function OnPrintPage()
{
	var sURL = document.location.href + "&print=true";
	WinPopup("http://www.hopgoodganim.com.au/Print.aspx?url=" + sURL, "winPrint", 400, 400, null);
}

function OnSearch()
{
	var oKeyword = document.getElementById("txtKeyword");
	document.location.href = "http://www.hopgoodganim.com.au/SearchResults.aspx?Search=" + escape(oKeyword.value);
}

function OnBookmark()
{
	window.external.AddFavorite('http://www.hopgoodganim.com.au','"HopgoodGanim');			
}	

function OnPhoto(nEntityId)
{
	WinPopup( "SlideShow.swf?FilePath=_upload\\SlideShow.xml&entityId=" + nEntityId, "winPhoto", 500, 350, null );
}

function OnWinLoad()
{											
	if(typeof(OnWindowLoad) != "undefined")
	{
		OnWindowLoad();				
	}
}

function WinPopup(winUrl, winName, winWidth, winHeight, winFeatures) {

	var clientWidth = screen.width;
	var clientHeight = screen.height;
	var leftPos = (clientWidth - winWidth) / 2;
	var topPos = (clientHeight - winHeight) / 2;
	if (leftPos < 0) {
		leftPos = 0;
	}
	if (topPos < 0) {
		topPos = 0;
	}
	if (winFeatures == null) {
		winFeatures = "left=" + leftPos + ",top=" + topPos + ",width=" + winWidth + ",height=" + winHeight + ",status=1,address=0,location=0,scrollbars=1,resizable=1";
	} else {
		winFeatures = "left=" + leftPos + ",top=" + topPos + ",width=" + winWidth + ",height=" + winHeight + "," + winFeatures;
	}

	window.open(winUrl, winName, winFeatures);
}
