var demo_window ;


function closedemo( new_page_url ) {
	
	this.location = new_page_url ;
	demo_window.close();
	
}










function openNewWindow( url ) {
	var width = screen.width;
	var height = screen.height;
	var args = "height="+height+",width="+width+",top=0,left=0,location=no,scrollbars=yes,toolbar=no,resizable=yes,status=no";
	win = window.open( url , 'flash', args);
	if (window.focus) {win.focus()}

}
			











function popUp( url ) {
	day = new Date();
	id = day.getTime();
	//eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=480,left = 0,top = 0');");
	demo_window = window.open( url , 'demo_window' , 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=480,left = 0,top = 0') ;
	demo_window.focus() ;
}
