
	function popbox(file, w, h)
	{
		// opens a window WITHOUT toolbar and menubar
		var varDate;
		var varTime;
		varDate = new Date();
		varTime = varDate.getHours() + varDate.getMinutes() + varDate.getSeconds();
		window.open(file,'new' + varTime,'width=' + w + ',height=' + h + ',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,left=30,top=30');
	//	mail = window.open(file,width=w,height=h,'new','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,left=0,top=0',title=""');
	//	mail.focus();
	}

	function popwindow(file, w, h)
	{
		// opens a window WITH toolbar and menubar
		var varDate;
		var varTime;
		varDate = new Date();
		varTime = varDate.getHours() + varDate.getMinutes() + varDate.getSeconds();
		window.open(file,'new'+varTime,'width=' + w + ',height=' + h + ',toolbar=1,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,left=30,top=30');
	}

