// JavaScript Document
function FOTV_popup(fl) {
	w=300; h=300;
	var winl=(screen.width-w)/2, wint=(screen.height-h)/2;
	WinOptions = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,height='+h+',width='+w+',top='+wint+',left='+winl;
	var LWindow = window.open(fl,"popup",WinOptions);
	LWindow.focus();
}