//------------ GH ADDED CUSTOM FUNCTIONS - DO NOT REMOVE ----------------//

function newImage(ID,file) {
	document.getElementById(ID).src='/images/'+file;
}

function open_window(URL,name,left,top,width,height,menubar){
	 rp=window.open(URL,name,"top="+top+",left="+left+",height="+height+",width="+width+",menubar="+menubar+",scrollbars=1,resizable=1,status=1");
	 rp.focus();
	 return(false);
}

function TestSearchContents()
{
    if (jQuery("input[id*=SearchText]").val() == "Search Our Site")
    {
        return false;
    }
    return true;
}




/***************************************************************
    FROM THE BLOG PLUGIN
****************************************************************/
function ToggleVisibility(elementId) {
    switch(document.getElementById(elementId).style.display)
    {
    case "block":
      document.getElementById(elementId).style.display = "none";
      break;    
    case "none":
      document.getElementById(elementId).style.display = "block";
      break;
    default:
        document.getElementById(elementId).style.display = "none";
    }
}

