var newURL = unescape(location.search.substring(1));
//alert(newURL);

function openpop()
{
//alert(newURL);

if ( newURL == "fullblog" ) {
		document.form1.billing.options[1].selected=true;
		document.getElementById("chk1").checked=true;
}
if ( newURL == "partblog" ) {
		document.form1.billing.options[2].selected=true;
		document.getElementById("chk1").checked=true;
}
if ( newURL == "hourblog" ) {
		document.form1.billing.options[3].selected=true;
		document.getElementById("chk1").checked=true;
}

if ( newURL == "fullseo" ) {
		document.form1.billing.options[1].selected=true;
		document.getElementById("chk2").checked=true;
}
if ( newURL == "partseo" ) {
		document.form1.billing.options[2].selected=true;
		document.getElementById("chk2").checked=true;
}
if ( newURL == "hourseo" ) {
		document.form1.billing.options[3].selected=true;
		document.getElementById("chk2").checked=true;
}
if ( newURL == "fullreview" ) {
		document.form1.billing.options[1].selected=true;
		document.getElementById("chk3").checked=true;
}
if ( newURL == "partreview" ) {
		document.form1.billing.options[2].selected=true;
		document.getElementById("chk3").checked=true;
}
if ( newURL == "hourreview" ) {
		document.form1.billing.options[3].selected=true;
		document.getElementById("chk3").checked=true;
}

}