	<!-- <![CDATA[
	var win = null; 
	
	var w=(screen.width)*.65; /* popup window width*/
	var h=(screen.height)*.80; /* popup window height*/

	var l=(screen.width-w)/2; /*this centers horizontally*/
	var t=(screen.height-h)/2; /*this centers vertically*/

	var features="left="+l+",top="+t+",width="+w+",height="+h+",scrollbars=yes,status=1,resizable=1,location=1";

	theURL = "http://demo.RaffleSoft.com/adminpanel/";
	theURL2 = "http://demo.RaffleSoft.com/home/";
	theURL3 = "http://www.PHP.net";
	theURL4 = "http://www.MySQL.com";
	theURL5 = "http://www.Linux.org";
	
	function openWindowdemo_admin() {
	win = window.open(theURL, "demo_admin", features);
	win.focus();
	}

	function openWindowdemo_user() {
	win = window.open(theURL2, "demo_user", features);
	win.focus();
	}
	
	function openWindow_php() {
	win = window.open(theURL3, "php", features);
	win.focus();
	}

	function openWindow_mysql() {
	win = window.open(theURL4, "mysql", features);
	win.focus();
	}

	function openWindow_linux() {
	win = window.open(theURL5, "linux", features);
	win.focus();
	}

	// ]]> -->

