// JavaScript Document
// Fullscreen popup
<!--
function popup(url) 
{
	if (screen.height>=1024)
	{
	 	window.location=url;
	}
	else
	{
		params  = 'width='+screen.width;
		params += ', height='+screen.height;
		params += ', top=0, left=0'
		params += ', fullscreen=no'; // ie only
		params += ', resizable=1';
		params += ', scrollbars=1';
		params += ',location=yes';
		
		newwin=window.open(url,'transparent', params);
		if (window.focus) {newwin.focus()}
		
	}
}
// -->