function FlashPopup(file,winname,ln,sp) {
	w = 760; h = 610;
	popwin = window.open('/pop.php?fn='+file+'&ln='+ln+'&sp='+sp,'popup'+winname,
	'width='+w+',height='+h+',toolbar=no,resizable=yes,top='+((screen.height*0.5)-h*0.5-20)+
	',left='+((screen.width*0.5)-w*0.5)+',scrollbars=yes');
//	popwin.blur();
	popwin.resizeTo(w+9,h+30);
	popwin.moveTo((screen.width*0.5)-w*0.5,(screen.height*0.5)-h*0.5-20);
	popwin.focus();
}
