//alert("tesT")
function checkAddVisitorForm(){
	a = document.frmAddToList;
	if(checkString(a.naam,"Naam",0)&&
	checkString(a.adres,"Adres",0)&&
	checkZipCode(a.postcode,"Postcode",0)&&
	checkString(a.woonplaats,"Woonplaats",0)&&
	checkPhone(a.telefoon_prive,"Telefoon",0)&&
	checkEmail(a.email,"E-mail",0)&&
	checkString(a.soort_woning,"Type woning",0)){return true}
	else{return false}
}

function checkAddFriendForm(){
	a = document.frmAddToList;
	if(checkString(a.objectId,"Object ID",0)&&
	checkString(a.naam_ontvanger," Naam bij vriend/kennis/relatie ",0)&&
	checkEmail(a.email_ontvanger," E-mail bij vriend/kennis/relatie ",0)&&
	checkString(a.naam_afzender," Naam bij uw gegevens ",0)&&
	checkString(a.opmerking_afzender,"Opmerking / mededeling",0)){return true}
	else{return false}
}

//function voor rotatie

function gotoDetails(imgSrc)
{
	lastSledge = imgSrc.lastIndexOf("/");
	imgName		= imgSrc.slice(lastSledge+1,imgSrc.length);
	objectId 	= imgName.replace("klein.jpg","");
	document.location = "/content/showObject.asp?id="+objectId;
}

//scripts t.b.v. bovenkant
function previewImage(id)
{
	a = document.getElementById("previewImg")
	a.src = "/objecten/" + id + "klein.jpg";
}

function setOriginalImage()
{
	a = document.getElementById("previewImg")
	a.src = "/images/pand_medium.jpg";
}





