/* Used in the "Search" function */
function showSearch()
{
   //alert ('start showSearch. height = ' + document.documentElement.clientHeight);
	if (document.documentElement.clientHeight < 550) {
   	//dojo.byId("sazSearch").target = "_self";
		document.forms[0].target = "_self";
	   return true;
	   }

	document.forms[0].target = "sazIframe";
   dojo.byId("sazIframeDiv").style.display = "block";
   dojo.byId("sazIframeDiv").style.zIndex = 20;
}

function hideSearch(urlInput)
{
   // alert ('hideSearch');
	window.open('/searching.jsp','sazIframe');
   dojo.byId("sazIframeDiv").style.display = "none";
   dojo.byId("sazIframeDiv").style.zIndex = 0;
}

/* Used by the popup windows for Privacy Policy  */

var secondDlg;

dojo.addOnLoad(function(){
  // create the dialog:
  secondDlg = new dijit.Dialog({
      title: "Programatic Dialog Creation",
      style: "width: 300px"
  });
});

function djPopUp (title,url) {
	if (document.documentElement.clientHeight < 550) {
	   return true;
	   }
	else {
	   var diag;
	   diag = new dijit.Dialog(
	      {
	         style: "width:520px; height:500px; overflow:auto; color:black;"
	      }
	      );
	   diag.titleNode.innerHTML = title;
	   diag.setHref(url);
	   diag.show();
	   return false;
	   }
}

