function NewWindows(url)
{
	window.open(url,"myWindows","width=500,height=500");
}
function CloseWindow()
{
	window.close();
}
function AlertMsg(Msg)
{
	alert(Msg);
}
function GoBack()
{
	history.back();
}
function GoForward()
{
	history.forward();
}
function ConfirmMsg(Msg)
{
	if(confirm(Msg))
	{
		return true;
	}
	else
	{
		return false;
	}
}
function CheckIsEmpty(str)
{
}
	



