google.load("earth", "1");

var ge = null;

function Legend(lat, long, title, content){
	var icon = ge.createIcon('');
	icon.setHref('http://maps.google.com/mapfiles/kml/paddle/red-circle.png');
	var style = ge.createStyle('');
	style.getIconStyle().setIcon(icon);
	var point = null;
	var pointPlacemark = null;
	point = ge.createPoint('');
	point.setLatitude(lat);
	point.setLongitude(long);
	pointPlacemark = ge.createPlacemark('');
	pointPlacemark.setName(title);
	pointPlacemark.setGeometry(point);
	pointPlacemark.setStyleSelector(style);
	pointPlacemark.setDescription(content);
	ge.getFeatures().appendChild(pointPlacemark);
}

function initCallback(object){
	ge = object;
	ge.getWindow().setVisibility(true);
	ge.getNavigationControl().setVisibility(ge.VISIBILITY_AUTO);
}

function failureCallback(object){

}

function GoTo(lat, long, alt, angle){
	Legend(lat, long,  'IMC', 'International Media Communication\n264 avenue Janvier Passero\n06210 MANDELIEU (FRANCE)');
	var lookAt = ge.createLookAt('');
	lookAt.set(lat,long, alt, ge.ALTITUDE_RELATIVE_TO_GROUND, 0, angle, 100);
	ge.getView().setAbstractView(lookAt);
}

function body_load(){
	google.earth.createInstance("map3d", initCallback, failureCallback);
	setTimeout('GoTo(43.54893, 6.9386441, 10, 45)', 10000); 
}