function popUpWindow(strURL,strName,strProperties)
{
	if (window.focus)
	{
		window.open(strURL,strName,strProperties);
	} else {
		alert("This site uses JavaScript - please allow your browser to run this script");
	}
}
