// write out an email address - reduces the spam
//<script>writeMail(\'com\',\'domain\',\'user\',true)</script>
function writeMail(com,domain,user,text){
   var a = user+"&#64;"+domain+"&#46;"+com;
   if(!text){text = a;};
   document.write('<a href="mailto:'+a+'">'+text+'</a>');
}

function showGallery(){
	var main = document.getElementById('main');
	var gallery = document.getElementById('flash-gallery');
	main.style.zIndex = 5;
	gallery.style.zIndex = 10;
	resizeGallery('100%','100%');
	gallery.focus();
}

function hideGallery(){
	var main = document.getElementById('main');
	var gallery = document.getElementById('flash-gallery');
	main.style.zIndex = 10;
	gallery.style.zIndex = 5;
	resizeGallery('100%','100%');
	gallery.blur();
}

function resizeGallery(w,h){
	var gallery = document.getElementById('flash-gallery');
	gallery.style.width = w;
	gallery.style.height = h;
}
