// Launch_Fullscreen

var platform;
var browser;
var version;

windowprops = "top=0,left=0,resizable=no"+"width="+screen.width+"height="+screen.height;
version = parseInt(navigator.appVersion);
if(navigator.userAgent.indexOf('Win') == -1) {
   platform = 'Macintosh';
} else {
	platform = 'Windows';
}
if(navigator.appName.indexOf('Netscape') == -1) {
	browser = 'IE';
} else {
	browser = 'Netscape';
}

function LaunchFullScreen(url) {
var winWidth = screen.width;
var winHeight = screen.height;

if(window.screen.width < 1000) {
	this.location = "url";
	} else {
		if((winWidth < 3000)&&((browser == 'IE') && (version >= 4))) {
			var newWindow = window.open( url ,'fullscreen','fullscreen,scrollbars',target="_blank");
	} else {
		 window.open(url, "main", windowprops);
		}
	}
}