function openWinMap(url)
{
  widthWin=1076;heightWin=614;
  var mtoX, mtoY;
  if (screen){
		mtoX = (screen.width<700) ? 10 : (screen.width-widthWin)/2;
		mtoY = (screen.height<600) ? 10 : (screen.height-heightWin)/2;
  }
  else{
	 	mtoY = 100;
		mtoX = 100;
  }

  winObj=window.open(url, 'mapa',"width="+widthWin+",height="+heightWin+",top="+mtoY+",left="+mtoX+",directories=no,menubar=no,toolbar=no,location=nos,status=no,resizable=yes,copyhistory=no,scrollbars=no");
  winObj.focus();
}

function openWinPop(url,width,height)
{
 	widthWin=width;heightWin=height;
   var mtoX, mtoY;
    if (screen){
        mtoX = (screen.width<widthWin) ? 10 : (screen.width-widthWin)/2;
        mtoY = (screen.height<heightWin) ? 10 : (screen.height-heightWin)/2;
    }else{
        mtoY = 100;
        mtoX = 100;
    }

    winObj=window.open( url, "_pop","width="+widthWin+",height="+heightWin+",top="+mtoY+",left="+mtoX+",directories=no,menubar=no,toolbar=no,location=nos,status=no,resizable=yes,copyhistory=no,scrollbars=no");

    winObj.focus();
}


