
function SetWindowTitle(strTitle)
{
	document.title = strTitle;
	window.status = strTitle;
}

function OpenURL(strURL)
{
	window.open(strURL);
}