function scrollUP(pos)
{
	var y = 880; //swf movie height
	while(y != pos)
	{
		window.scroll(0,y);
		y = y - (y-pos)*.1;			
		if (((y-pos) <= .5)&&((y-pos) >= -.5))
		{					
			y = pos;
		}		
	}
}
var remote;
function openWin(abre)
{
	
	remote = window.open(abre,"editafoto","width=550,height=475,top=325,left=325,location=no,toolbar=no,directories=no,status=no,scrollbars=no,resize=no,menubar=no,status=yes");
	
}
function closeWin()
{	
  	remote.close();
}
