
// POP-UP WINDOW

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// NEW POP-UP WINDOW

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=350,height=320');");
}

// PRINT PAGE

function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}


// --------GOOGLE MAP----------

//Inst from www.google.com/apis/maps/documentation

//<![CDATA[
function load() { if (GBrowserIsCompatible()) {
   var map = new GMap2(document.getElementById("map"));

//grid ref (from multimap) in brackets 
   var center = new GLatLng(55.34294, -1.6087);

//Set magnification
   map.setCenter(center, 11);

//Place a marker in the center of the map 
   var marker = new GMarker(center);
   map.addOverlay(marker);

//Add Controls - with scaling zoom
   map.addControl(new GLargeMapControl());
   map.addControl(new GMapTypeControl());

    } } //]]> 
    

// -------------------------------------
