	function toggle(divid)
	{
		if(eval("document.all['" + divid + "']"))
		{
			tstyle = eval("document.all['" + divid + "'].style.display")
			if(tstyle == 'none')
			{
				document.all[divid].style.display = 'block'
			}
			else 
			{
				//alert(document.all[divid].scrollHeight)
				//alert(document.all[divid].offsetHeight)
				//p = eval(divid + ".style")
				//p.height = 10
				document.all[divid].style.display = 'none'
			}
		}
	}	
	function popWindow(theURL,winName)
	{
		  window.open(theURL,winName,'toolbar=no,scrollbars=yes,resizable=no,width=640,height=480');
	}