var oSearchDialog;
var sSDAjaxURL = '';
var sSDAjaxElementID = '';


$(document).ready
(
	function()
	{ 
		options = {resizable: true, autoOpen: false, height: 300, width: 360};
		oSearchDialog = $("#searchDialog").css("display", "block").dialog(options);
		
		$("#"+sSDAjaxElementID).html($("#loadingImage").html());
		$("#"+sSDAjaxElementID).load(sSDAjaxURL);
	}
);


function initSearchDialog(sURL, sAjaxElementID)
{
	searchDialogAjaxURL = sURL;
	sSDAjaxElementID = sAjaxElementID;
}


function postSearch()
{
	$("#"+sSDAjaxElementID).html($("#loadingImage").html());
	$("#"+sSDAjaxElementID).load(sSDAjaxURL, $(":input").serializeArray());
	return false;
}


function openSearchDialog()
{
	oSearchDialog.dialog("open");
}


function clearSearch()
{
	$("input[name=txtSearch]").attr("value", "");
	$("#"+sSDAjaxElementID).html($("#loadingImage").html());
	$("#"+sSDAjaxElementID).load(sSDAjaxURL, {'txtSearch':''});
}