/***********************************************************************************************/
/********************************* functions.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=0,scrollbars=1,toolbar=0,location=0,directories=0,menubar=1 ";
		newwin = window.open( myfile, winname , params)
		if( window.focus ) newwin.focus();
	}
