function SubmitForm(name,message)
{
		if (document.all(name).value == "") {alert(message);document.all(name).focus();return false;}
}//end function SubmitForm

function Delete_record(path,message)
{
	if(confirm(message)) 
	{
	 window.location = path;
	}
}

function Submit_Reg(message1,message2)
{
		if (document.all("login").value=="") {alert(message1);document.all("login").focus();return false;}
		if (document.all("pwd").value=="") {alert(message2);document.all("pwd").focus();return false;}
}

function ShowPreview(img_value,img_src)
{
	var re=/\\/g;
	var sn="file://localhost/"+img_value.replace(re,"/");
	document.all(img_src).src=sn;
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
