Ext.form.Field.prototype.msgTarget = 'side';
Ext.QuickTips.init();

function map(lat, lon){    
	//<![CDATA[
		
    zoom = 6;
    var map = new GMap(document.getElementById('map'));
    map.addControl(new GLargeMapControl());
	map.addControl(new GMapTypeControl());
	    
    var center = new GPoint(lat, lon);
    map.centerAndZoom(center, zoom);			
		
	var pnt = new GPoint(lat, lon);
	var mrk = new GMarker(pnt);								
	map.addOverlay(mrk);
	
    //]]>    
}


function delLoc(id){
	if(confirm('Are you sure you want to delete this location.')){
		try{			
			document.location.href="/index.php/admin/del_loc/" + id;
		}catch(err){
			alert(err);
		}
	}
}


function delOffice(id){
	if(confirm('Are you sure you want to delete this office.')){
		try{			
			document.location.href="/index.php/admin/del_office/" + id;
		}catch(err){
			alert(err);
		}
	}
}


function toggImg( img_id, img_src ){
	$( img_id ).src = "/app/webroot/img/lib/" + img_src;
}