// JavaScript Document
function show (r,d,f) {
	if (document.getElementById || document.all) {
	var r
	var d
	var f
	
	if (r.style.display = 'none') {
		r.style.display = 'inline';
		d.style.display = 'none';
		f.style.display = 'none';
	} 
	}
}

function showContactPop () { 
	document.getElementById('contactPop').style.display = 'inline';
}
function hideContactPop () { 
	document.getElementById('contactPop').style.display = 'none';
}