function verifyIsNull()
{
	alert("test");
	return false;
}
function hintNullMsg(oId,msg)
{
	var oValue=document.getElementById(oId).value;
	oValue=oValue.replace(" ","");
	if(oValue=="")
	{
		alert(msg);
		return true;	
	}
}
function class_verify(oId,msg)
{
	this.oId=oId;//对象的Id
	this.msg=msg;//提示的信息
}
class_verify.prototype.isNull=function()
{
	for(var i=0,page=this.oId.length;i<page;i++)
	{
		var o=document.getElementById(this.oId[i]);	
		var oValue=o.value.replace(" ","");
		if(oValue=="")
		{
			alert(this.msg[i]);
			o.focus();
			return false;
		}
	}
	return true;
}