/*************************************************************/
/******************* default .js *****************************/
/*************************************************************/





//************************************************************
// Popup 


	function hald_openwin(myfile,width,height){
		if( !width ) width = 400;
		if( !height ) height = 400;
		var now=new Date()
		winname="a" + now.getTime()
		params = "width="+width+",height="+height+",resizable=1,status=1,scrollbars=1,toolbar=0,location=0,directories=0,menubar=0 ";
		newwin = window.open( myfile, winname , params)
		if( window.focus ) newwin.focus();
	}
	
	function hald_openwinfix(myfile,width,height){
		if( !width ) width = 400;
		if( !height ) height = 400;
		var now=new Date()
		winname="a" + now.getTime()
		params = "width="+width+",height="+height+",resizable=0,status=1,scrollbars=0,toolbar=0,location=0,directories=0,menubar=0 ";
		newwin = window.open( myfile, winname , params)
		if( window.focus ) newwin.focus();
	}
	
