// Display Layer Script

function showLayer(layerName)  {
document.getElementById(layerName).style.visibility='visible';
}

function hideLayer(layerName)  {
document.getElementById(layerName).style.visibility='hidden';
}


//URL JUMPS
function jumpURL(sURL){
	if(sURL !="packages_combined.html" && sURL !="florida_programs.html"){
		popupWin(sURL, 550, 400);
	}


	else
	{
	  window.location = sURL;
	}
}



//URL JUMPS2 just for the registration selection list
function jumpURL2(sURL){


	if(sURL == "state_ak.html" || sURL == "state_ca.html" || sURL == "state_ct.html" || sURL == "state_in.html" || sURL == "state_mt.html" || sURL == "state_nc.html" || sURL == "state_nd.html"|| sURL == "state_ok.html" || sURL == "state_sc.html" || sURL == "state_sd.html" || sURL == "state_vt.html" || sURL == "state_ks.html"){
		popupWin(sURL, 550, 400);
	}



}


function popupWin(page, width, height) {
		popup = window.open(page, "News_Popup_" + height, "width=" + width + ",height=" + height + ",left=0,top=0,location=no,screenX=300,screenY=300,alwaysRaised=yes,scrollbars=yes,resizable=yes");
		popup.window.focus();
}


var IE = (navigator.userAgent.indexOf('MSIE') != -1);

function no_scrollbar()
{
	if(!IE)
		return;
	var root = document.all[1]; // IE >= 4

	if(root.style.overflow != 'auto')
		root.style.overflow = 'auto';
	document.body.style.width = root.clientWidth + 'px';
}
function init()
{
	no_scrollbar();
}