function isnull(o,msg){
if (o.value==""){
	alert(msg);
	o.focus();
	return true;
}
}

function isnumber(o,msg)
{
var alldigit="-0123456789";
for(var i=0;i<o.value.length;i++)
{
	if (alldigit.indexOf(o.value.toString().substr(i,1))==-1) 
	{
		if (msg!="")
		{alert(msg);}
		o.select();
		o.focus();
	return false;
	}
}
	return true;
}

function checknumber(o,msg)
{
var alldigit=".0123456789";
for(var i=0;i<o.value.toString().length;i++)
	{
		if (alldigit.indexOf(o.value.toString().substr(i,1))==-1) 
		{
		if (msg!="")
		{alert(msg);}
		o.select();
		o.focus();
		return false;
		}
	}
	return true;
}

function isemail(o,msg)
{
if (isnull(o,msg)){return false;}
if ((o.value.toString().indexOf("@")<=0)||(o.value.toString().indexOf(".")<=2))
	{
	if (msg!=""){alert(msg);}
	o.select();
	o.focus();
	return false;
	}
return true;
}



