function addtobasket(propid) {
 eval('document.propdetails.bsktid.value="'+ propid +'"');
 document.propdetails.submit();
}

function removefrombasket(propid) {
 eval('document.propdetails.bsktid.value="'+ propid +'"');
 document.propdetails.action="basket.php";
 document.propdetails.submit();
}

function basket_backnav(targetpage) {
 eval('document.propdetails.action="' + targetpage + '"');
 document.propdetails.submit();
}

function basket_register() {
 document.propdetails.action="reg_form.php";
 document.propdetails.submit();
}

function viewbasket() {
 document.propdetails.action="basket.php";
 document.propdetails.submit();
}
function viewdetails(itemid) {
 eval('document.propdetails.action="property_detail.php?id=' + itemid + '"');
 document.propdetails.submit();
}
function viewresults(resaction) {
if (resaction.length > 0) {
	eval('document.propdetails.action="' + resaction + '"');
 	document.propdetails.submit();
} else {
	document.propdetails.action="search_result.php";
}

}

function setResPage(pageNo) {
 document.propdetails.action="search_result.php";
 eval('document.propdetails.pg.value="'+ pageNo +'"');
 document.propdetails.submit();
}



function prop_pic_replace(img_no,img_name) {
//	eval('document.all.mainimage.src="http://www2.vebra.com/latitudes/sales/ecimage' + img_no + '/' + img_name + '"' );
	eval('document.all.mainimage.src="' + img_name + '"' );

}

