//Kung Fu
self.moveTo(0,0);
self.resizeTo(screen.availWidth,screen.availHeight);

function clearValue(field)
{
if (field.defaultValue == field.value)
field.value = ""
}


	function toggle_extras() {

       	var a=document.getElementById("mapWindow");
	  	var b=document.getElementById("galleryWindow");
		
		
	   
	   	if(a.style.position == 'absolute'){
	   		a.style.position = 'relative';
			a.style.top = '0px';
			b.style.position = 'absolute';
			b.style.top = '-3000px';}
		else{
			a.style.position = 'absolute';
			a.style.top = '-3000px';
			b.style.position = 'relative';
			b.style.top = '0px';}
  
	}
	

