
function validZIP(val){
	re = new RegExp(/^\d{5,5}$/);
	if(val.match(re)){
		return true;
	} else {
		return false;
	}
}


function validateIns(f){
	if(f.zipcode.value == ''){
		alert('Please enter your zipcode.');
		f.zipcode.focus();
		return false;
	} else if(!validZIP(f.zipcode.value)){
		alert('Please enter valid 5-digits zipcode.');
		f.zipcode.focus();
		return false;
	} else {
		url1 = 'http://www.prosper.com/prm/get-a-loan.html?type=d2&utm_source=affiliate&utm_medium=affiliate&utm_campaign=JKTQF&refac=JKTQF&refmc=OLRTIFJ';//BNONE-CAALLIANCE
		//alert(url1);
		document.location = url1;
		return false;
	}

	return false;
}


function redirect(){
	window.status = '';
	url1 = 'http://www.prosper.com/prm/get-a-loan.html?type=d2&utm_source=affiliate&utm_medium=affiliate&utm_campaign=JKTQF&refac=JKTQF&refmc=OLRTIFJ';//BNONE-CAALLIANCE
	//alert(url1);
	document.location = url1;
	window.status = '';
}
