<!-- 

function mapWindow(src) 
   {
   myWindow = window.open (src, "mapwindow","menubar=no,scrollbars=yes,resizable=yes,dependent=yes,height=795,width=714");
   myWindow.focus(); 
   } 

function villageWindow(src) 
   {
   myWindow = window.open (src, "villagewindow","menubar=no,scrollbars=yes,resizable=yes,dependent=yes,height=535,width=756");
   myWindow.focus(); 
   } 

function galleryWindow(src) 
   {
   myWindow = window.open (src, "gallerywindow","menubar=no,scrollbars=no,resizable=no,dependent=yes,height=400,width=504");
   myWindow.focus(); 
   } 

function mWindow(src) 
   {
   myWindow = window.open (src, "mapquest","menubar=no,scrollbars=no,resizable=no,dependent=yes,height=375,width=400");
   myWindow.focus(); 
   }

function rWindow(src) 
   {
   myWindow = window.open (src, "rules","menubar=no,scrollbars=yes,resizable=yes,dependent=yes,height=500,width=620");
   myWindow.focus(); 
   }

function vWindow(src) 
   {
   myWindow = window.open (src, "video","menubar=no,scrollbars=no,resizable=no,dependent=yes,height=400,width=600");
   myWindow.focus(); 
   }

var newWindow;
function popup(URL,width,height) 
{
	if(!newWindow || newWindow.closed )
	{
		newWindow = window.open(URL, 
                        'script','toolbar=0,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=yes,dependent=yes,width='+width+',height='+height+',left=60,top=60');
    newWindow.focus();
	}
	else
	{
		newWindow.resizeTo(width+12,height+30);
    newWindow.focus();
	}
}

   // -->