document.write("<DIV id='divmsgwdgt' name='divmsgwdgt' style='position:absolute;width:87%;left:17;top:27;visibility:hidden;'><TABLE width='100%' bgcolor='#FF081A' class='msg' cellPadding=0 cellSpacing=0><TR><TD width=1 ><IMG src='/images/icons/crnrtl.gif'></TD><TD width=99%></TD><TD width=1 ><IMG src='/images/icons/crnrtr.gif'></TD></TR><TR><TD colSpan=3 style='padding-left:4;'><B name='msgwdgt' id='msgwdgt'>Test msg</B></TD></TR><TR><TD width=1 ><IMG src='/images/icons/crnrbl.gif'></TD><TD width=99%></TD><TD width=1 ><IMG src='/images/icons/crnrbr.gif'></TD></TR></TABLE></DIV>");

function showMsg(msg,hideout){
	if(msg=="") msg="Good msg...";
	document.getElementById("msgwdgt").innerHTML="&nbsp;"+msg;
	document.getElementById("divmsgwdgt").style.width="87%";
	document.getElementById("divmsgwdgt").style.visibility="visible";
	if(hideout!=null) window.setTimeout("hideMsg()",parseInt(hideout));
}

function showMsgControlW(msg,hideout,w){
	if(msg=="") msg="Good msg...";
	document.getElementById("msgwdgt").innerHTML="&nbsp;"+msg;
	document.getElementById("divmsgwdgt").style.width=w+"%";
	document.getElementById("divmsgwdgt").style.visibility="visible";
	if(hideout!=null) window.setTimeout("hideMsg()",parseInt(hideout));
}

function showMsgControlWYX(msg,hideout,w,y,x){
	if(msg=="") msg="Good msg...";
	document.getElementById("msgwdgt").innerHTML="&nbsp;"+msg;
	document.getElementById("divmsgwdgt").style.width=w;
	document.getElementById("divmsgwdgt").style.top=y;
	document.getElementById("divmsgwdgt").style.left=x;
	document.getElementById("divmsgwdgt").style.visibility="visible";
	if(hideout!=null) window.setTimeout("hideMsg()",parseInt(hideout));
}

function hideMsg(){
	document.getElementById("msgwdgt").innerHTML="";
	document.getElementById("divmsgwdgt").style.visibility="hidden";
}