// JavaScript Document

function submitform()
{
 searchform.submit();
}

function ShowHideLayer(boxID) {
	var box = document.getElementById("box"+boxID);
	var boxtxt = document.getElementById("txt"+boxID);
	
	/* If the selected box is currently invisible, show it */
	if(box.style.display == "none" || box.style.display=="") {
		box.style.display = "block";
		boxtxt.innerHTML="Read less &lt;&lt; ";
	}
	/* otherwise hide it */
	else {
		box.style.display = "none";
		boxtxt.innerHTML="Read more &gt;&gt; ";

	}
}

function gsPopUp(URL, w, h) {
  day = new Date();
  id = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=" + w + ",height=" + h + "');");
}