var map;
var startclass;
 
function initialize() {

	var latlng = curlocation;   
	var myOptions = {      
		zoom: initialzoom,      
		center: latlng,      
		mapTypeId: google.maps.MapTypeId.ROADMAP    
	}
	
	map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);  
	
	var cdmarker = '/include/template/images/cd_marker.png';
	var cdshadow = '/include/template/images/cd_shadow.png';
	
	var marker = new google.maps.Marker({      
			position: latlng,
			map: map,  
			title: propertyname,
			icon: cdmarker,
			shadow: cdshadow});  
			
		}		

function togglegps() {
	
	if(!startclass) {
	startclass = document.getElementById("map_container").className;}
	
	if(document.getElementById("map_container").className==startclass) {
		document.getElementById("map_container").className="fullscreen";
		document.getElementById("map_control").style.background="url(/include/template/images/minimise.gif)"
		}
	else {
		document.getElementById("map_container").className=startclass;
		document.getElementById("map_control").style.background="url(/include/template/images/maximise.gif)"
		}
	initialize();
}

function CDPopup(url) {
   salespopup=window.open(url,'SalesRequest','width=550,height=420,screenX=40,screenY=40,top=40,left=40,scrollbars=1,resizable=1');
   if (window.focus) {salespopup.focus()}
   return false;
}
