﻿// JScript File

function doHide()
 {
 document.getElementById("pnlMenu").style.display = "none";
 document.all("pnlJobs").style.display = "none";

 }
 function doShow()
{
 document.all("pnlMenu").style.display = "inline";
 document.all("pnlJobs").style.display = "inline";
 }
 

function check()
{
	try
	{ 
			var hdnRedirectURL = document.getElementById("ctl00_contentplaceholder1_ucAllSearch_hdnRedirectURL");
			var outputStr="";
			for(i = 0; i < aspnetForm.elements.length; i++)
			{
				elm = document.aspnetForm.elements[i];	        
			   if (elm.type == 'checkbox')
				{
				  if (elm.checked==true)
				  {                   
					  outputStr = outputStr + elm.value+ ";"  
	                                  
				  }
			  }
		  }
		  hdnRedirectURL.value =  outputStr;
		  return true;
		}
		catch(err)
		{
			return false;
		}

}





