function getMap(PosTop,thisId,thisIdIn){
	var newMap = document.getElementById(thisId);
	var newMapIn = document.getElementById(thisIdIn);
	newMap.style.visibility = 'visible';
	newMapIn.style.visibility = 'visible';
	newMap.style.top=PosTop;
}

function closeMap(mapID,mapIDin){
	document.getElementById(mapID).style.visibility = 'hidden';
	document.getElementById(mapIDin).style.visibility = 'hidden';
}

function getEnq(PosTop,dealerEmail,selectDealership){
	document.getElementById('enqForm').style.visibility = 'visible';
	document.getElementById('enqForm').style.top=PosTop;
	document.contactForm.SelectDealership.value = selectDealership;
	document.contactForm.DealerEmail.value = dealerEmail;
}

function closeEnq(){
	document.getElementById('enqForm').style.visibility = 'hidden';
}