function showPopup(id) {
	var el = document.getElementById('track_map_container'); 
	// if we got the reference ..
	if ( el ) {
		// set the display to 'block' = visible
		el.style.display = 'block';
	}		
}

function hidePopup(id) {
	var el = document.getElementById('track_map_container');
	if ( el ) {
		el.style.display = 'none';
	}
}

function popup(url) {
	newwindow=window.open(url,'VIP Contact','height=320,width=375,left=400,top=200,scrollbars=no,resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
	if (window.focus) {newwindow.focus()}
	return false;
}



function clickclear(thisfield, defaulttext) {
if (thisfield.value == defaulttext) {
thisfield.value = "";
	}
}

function clickrecall(thisfield, defaulttext) {
if (thisfield.value == "") {
thisfield.value = defaulttext;
}
}

