if(scrolls!="no"){scrolls = "yes"};
		var windowNamen="_blank";
		var browserName=navigator.appName;
		var operatingSystem=navigator.platform;
		var version = parseFloat(navigator.appVersion);
		
		// Netscape check version 4.0+ on Win
		if (browserName.indexOf("Netscape")!=-1 && version>=4.0 && operatingSystem.indexOf("Mac")!=-1){
		 	window.open(url,windowNamen,'titlebar=no,top=0,left=0,width=' + width+',height='+height+',screenX=0,screenY=0,top=0,left=0,scrollbars='+scrolls);
		 }

		// MSIE Mac check
		else if (browserName.indexOf("Microsoft Internet Explorer")!=-1 && operatingSystem.indexOf("Mac")!=-1){
		 	window.open(url,windowNamen,'titlebar=no,top=0,left=0,width=' + width+',height='+height+',screenX=0,screenY=0,top=0,left=0,scrollbars='+scrolls);
		 }

		// Netscape Mac check
		else if (browserName.indexOf("Netscape")!=-1 && operatingSystem.indexOf("Mac")!=-1){
		 	window.open(url,windowNamen,'width='+width+',height='+height+',top=0,left=0,scrollbars='+scrolls);
		 }

		// MSIE Windows
		else if (browserName.indexOf("Microsoft Internet Explorer")!=-1 && operatingSystem.indexOf("Win")!=-1){
		 	//window.open(url,windowNamen,'fullscreen=1,top=0,left=0');
		 	var win = window.open(url,windowNamen,'titlebar=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scrolls+',resizable=0,top=0,left=0,width=' + width+',height='+height+',screenX=0,screenY=0,top=0,left=0');
			 //win.resizeTo(width, height);
			 //win.moveTo(1, 1);
			 //win.moveTo(0, 0);
			 //win.resizeTo(screen.width, screen.height);
		 }

		// Netscape Windows
		else if (browserName.indexOf("Netscape")!=-1 && operatingSystem.indexOf("Win")!=-1){
		 	window.open(url,windowNamen,'width='+width+',height='+height+',top=0,left=0,scrollbars='+scrolls);
		 }else{
		 	window.open(url,windowNamen);
		 }
}


