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()
{
	var sTitle = "Orata";
	var sUrl = "http://www.orata.com";
	
	if (window.sidebar)
	{ 
		window.sidebar.addPanel(sTitle, sUrl,"");
	}
	else if( window.external )
	{
		window.external.AddFavorite(sUrl,sTitle);
	}
	else if(window.opera && window.print)
	{
		return true;
	}
	else
	{
		return false;
	}
}

function OnPhoto(sFileName)
{
	WinPopup( "ImageView.aspx?fname=" + sFileName, "winPhoto", 220, 220, null );
}

function OnWinLoad()
{											
	if(typeof(OnWindowLoad) != "undefined")
	{
		OnWindowLoad();				
	}								
}	