function chk_blank(fname,fvalue)
{
 if(fvalue.length==0)
 {
 alert(fname +" should not be left blank");
 return false;
 }
 return true;
}
