// JavaScript Document
function pageReset(initialLatLong) {
	if (typeof label != "undefined") {
		removeLabels(initialLatLong);
		//hideLabels();
	}
}
function pageResetNoZoom() {
	if (typeof label != "undefined") {
		map.clearOverlays(label);
		map.removeOverlay(label);
	}
}
//-----show the labels-----//
function showLabels(){
   label.show();
   labelStatus ="visible";
}

//-----hide the labels-----//
function hideLabels(){
   label.hide();
   labelStatus ="hidden";
}
//-----remove the labels-----//
function removeLabels(label){
   map.removeOverlay(label);
   map.clearOverlays(label);
   //zoom = 5;
   //map.setCenter(initialLatLong, zoom);
}
//-----check the labels-----//
function checkLabels() {
   if (map.getZoom() < 6){
	  hideLabels();
   }
   else {
	  showLabels();
   }
}
//-----return to country list-----//
function goBack() {
	location.href="/selectCountry.php";	
}