function OnPrintPage()
{
	var sURL = document.location.href + "&print=true";
	
	WinPopup( "Print.aspx?url=" + sURL, "winPrint", 400, 400, null );
}
function OnSearchEnter(object) 
{
	if( object.type == "keypress" && object.keyCode == "13" ) 
	{
		var oKeyword = document.getElementById("txtKeyword");
		if( oKeyword.value.length > 0 )
		{
			OnSearch();
		}
	}
} 
function OnSearch()
{
	var oKeyword = document.getElementById("txtKeyword");
	document.location.href = "SearchResults.aspx?Search=" + escape( oKeyword.value );
}

function OnBookmark()
{
	window.external.AddFavorite('http://http://www.shiftworks.com.au','"Shiftwork Solutions');			
}	

function OnPhoto(nEntityId)
{
	WinPopup( "SlideShow.swf?FilePath=_upload\\SlideShow.xml&entityId=" + nEntityId, "winPhoto", 500, 350, null );
}

function OnWinLoad()
{											
	if(typeof(OnWindowLoad) != "undefined")
	{
		OnWindowLoad();				
	}								
}	
