// JavaScript Document
<!--

function openMap(URL)
{
   aWindow=window.open(URL, "map", "toolbar=no,width=400,height=472,scrollbars=no,resizable=no,menubar=no,top=25,left=25");
   aWindow.focus();
}

//-->

<!--

function openSlideshow(URL)
{
   aWindow=window.open(URL, "slideshow", "toolbar=no,width=450,height=375,scrollbars=yes,resizable=no,menubar=no,top=50,left=50");
   aWindow.focus();
}

//-->

<!-- 
function windowResize(myWidth,myHeight) {

	var leftpos = screen.width / 2 - myWidth / 2;
	var toppos = screen.height / 2 - myHeight / 2; 
	
	if(myWidth>screen.width){
		myWidth = screen.width - 100
	}
	
	if(myHeight>screen.height){
		myHeight = screen.height - 100
	}
	
	self.resizeTo(myWidth+10, myHeight+55);
	//self.moveTo(leftpos, toppos);

}
// -->
