	function popupTV(url)
	{
		params = 'width=' + document.width;
		params += ', height=' + document.height;
		params += ', top=0, left=0, fullscreen=yes, location=no, menubar=no, resizable=no';
		params += ', status=no, titlebar=no, toolbar=no, scrollbars=yes';
		
		newwindow = window.open(url, "check", params);
		//if(windows.focus) {newwindow.focus();}
		
		return false;
	}
	
	function closePopup()
	{
		var browser = (navigator.userAgent);
		
		if (browser.indexOf("Firefox") != -1 || browser.indexOf("MSIE") != -1)
			window.opener.focus();
		else 
			window.close();
	}
	