<!--
	function EventDetailPopup(url)
	{
		var x = screen.width/2 - 250; 
		var y = screen.height/2 - 175; 
		var win = window.open(url,"win","width=500,height=350,scrollbars=yes, top=" + y + ",left=" + x);
		win.focus();
	}
	
	function confirm_delete(msg)
	{
		return confirm(msg);
	}
	
	function GotoSearch()
	{
		window.location.href = "/search.aspx?strSearch=" + document.getElementById("txt_search").value;
	}
//-->
