// JavaScript Document
function apri(theurl,w,h){
	sw=screen.width;
	sh=screen.height;
	f=window.open(theurl,"f","width="+w+",height="+h+",scrollbars=0");
	f.focus();
	f.moveTo((sw-w)/2,(sh-h)/2);
}