function openWin(url, name, width, height)  {
  heehaw = window.open(url, name, 'width=' + width + ',height=' + height + ',left=50,top=50,toolbar=0,location=0,directories=0,status=1,resizable=yes,scrollbars=yes');
  heehaw.focus(); 
}

function getPDF(url, name, width, height)  {
  heehaw = window.open(url, name, 'width=' + width + ',height=' + height + ',left=50,top=50,toolbar=0,location=0,directories=0,status=1,resizable=no,scrollbars=no');
  heehaw.focus(); 
}

function popWin(loc) {
  window.open(loc,"gbWindow",'resizeable=no,scrollbars=no, toolbar=0,location=0,directories=0,status=0,menubar=0,width=350,height=470');
}
 
function LinkSelect(form, sel)
	{
		c = sel.selectedIndex;
		adrs = sel.options[c].value;
		if (adrs != "-" )
        {
	        LinkWin=window.open("","_blank", "");
		    LinkWin.location.href=adrs;
        }
}