var newURL = unescape(location.search.substring(1));
//alert(newURL);

function openpop()
{
//alert(newURL);

if ( newURL == "fullweb" ) {
		document.form1.billing.options[1].selected=true;
		document.getElementById("chk1").checked=true;
}
if ( newURL == "partweb" ) {
		document.form1.billing.options[2].selected=true;
		document.getElementById("chk1").checked=true;
}
if ( newURL == "hourweb" ) {
		document.form1.billing.options[3].selected=true;
		document.getElementById("chk1").checked=true;
}

if ( newURL == "fullflash" ) {
		document.form1.billing.options[1].selected=true;
		document.getElementById("chk2").checked=true;
}
if ( newURL == "partflash" ) {
		document.form1.billing.options[2].selected=true;
		document.getElementById("chk2").checked=true;
}
if ( newURL == "hourflash" ) {
		document.form1.billing.options[3].selected=true;
		document.getElementById("chk2").checked=true;
}

}
