
function gotolaction(address,name)
{
	if(address !="")
	{
		parent.FrameMain.location.href=address;
	}
	if(name !="")
	{
		parent.frames["FrameTop"].document.all["topneirong"].innerHTML=name;	
	}
}

function setTitle(name)
{
		parent.FrameTop.document.all["topneirong"].innerHTML=name;
}

/**
 * 显示信息
 */
function setmsg(msg,box)
{
	if (box != "")
	{
		document.getElementsByName(box)[0].focus();
		
		try{document.getElementsByName(box)[0].select();}catch (e){};
		document.getElementsByName(box)[0].style.background = 'red';
	}
	alert(msg);
	
}
/**
 * 显示信息
 */
function setbox(box,color)
{
	if(color==undefined){
		color="red";
	}
	if (box != "")
	{
		//document.getElementsByName(box)[0].focus();		
		//try{document.getElementsByName(box)[0].select();}catch (e){};
		document.getElementsByName(box)[0].style.background = color;
	}	
}
/**
 * 加0
* @param  str    
*/
function addZero(str,p,length)    
{     
	while (str.valueOf().length < length)
	 	
	{
 		str = p+str;
 		
	}
 	return str;
} 
