function openWin(theURL,winName,width,height,winprops)
{ 
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - height) / 2;

	features = 'height=' + height + ',width=' + width + ',top=' + wint + ',left=' + winl + ',' + winprops;

	window.open(theURL,winName,features);
}
function RedirectToNewPage(theURL)
{
	window.location = theURL;
}
