// JavaScript Document
/*
Copyright (C) 2011 ECS All Rights Reserved.
Gmap Library JavaScript
  use V3 API & KMLData
*/
/* !*********************************** */


/* !event */
$(document).ready(function(){

  $(".popup").click(function(){
//    alert(this.getAttribute('href'));
    basicWOpen(this.getAttribute('href'),'popup');
    return false;
  });


});

function basicWOpen(file,name){
  var wx,wy,x,y,no;
  wx=800;
  wy=600;
  x=(screen.width - wx)/2;
  y=(screen.height - wy)/2;
  window.open(file,name,"left="+x+",top="+y+",width="+wx+",height="+wy+",scrollbars=yes,location=no,menubar=no,status=yes,resizable=no,toolbar=yes");
  no++;
}

