function popupform(myform, windowname)
	{
	if (! window.focus)return true;
	window.open('', windowname, 'height=480,width=640,toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1');
	myform.target=windowname;
	return true;
	}
	
function initdt(mf) 
	{
	var t = new Date();
	if(t.getDate()<10) { mf.day.value = ("0"+t.getDate()) }else{ mf.day.value = t.getDate() }
	if(t.getMonth()<9) { mf.month.value = ("0"+(t.getMonth()+1)) }else{ mf.month.value = (t.getMonth()+1) }			
	mf.year.value = t.getFullYear();
	} 