




function centeredWin(w, h, url) {

	var x = parseInt(screen.width) / 2 - (w/2); 
	var y = parseInt(screen.height) / 2 - (h/2); 

	newWin=window.open(url,'Upload','toolbar=no,menubar=no,location=no,resizable=no,status=no,width='+w+',height='+h+',left='+x+',top='+y+',scrollbars=no');
	newWin.moveTo(x,y);
	

	
}

function setPageData( href, title ){

	location.href = href;
	document.title = title;
	
}

