<!--

function chMenuIm()
{

}

newWin = false;

function openWindow(url,width, height, scrollb)
{
	scrb = (scrollb == 1)? "yes" : "no" ;
	
	c = "toolbar=no,menubar=no,location=no,personalbar=no,status=no,directories=no,";
	c += "resizable=no,scrollbars="+scrb+",width="+width+",height="+height+",left=50,top=50";
	

	newWin = window.open(url,"newWin",c);
}

msg = new messageBox("msg");
msg.style.background = "#faf5cb";
msg.style.border = "1px solid #3e8b02";
msg.btn_className = "formButton";
msg.text_className = "text";

function message()
{
	if(message.arguments.length == 1)
		msg.show(message.arguments[0]);
	else
		msg.show(message.arguments[0], message.arguments[1]);
}

cr = new crypt("");

//-->
