function OnPrintPage()
{
	var sURL = document.location.href + "&print=true";
	
	WinPopup( "Print.aspx?url=" + sURL, "winPrint", 400, 400, null );
}

function OnSearch()
{
	var oKeyword = document.getElementById("txtKeyword");
	document.location.href = "SearchResults.aspx?Search=" + escape( oKeyword.value );
}

function OnBookmark()
{
	window.external.AddFavorite('http://www.strandrugbyquay.com.au','The Strand at Rugby Quay');			
}	

function OnPhoto(nEntityId)
{
	WinPopup( "SlideShow.swf?FilePath=_upload\\SlideShow.xml&entityId=" + nEntityId, "winPhoto", 500, 350, null );
}

function OnWinLoad()
{											
	if(typeof(OnWindowLoad) != "undefined")
	{
		OnWindowLoad();				
	}								
}	