// JavaScript Document
/*POP MAP GPS*/
function popUp1(URL) {
	var wwidht = 500;
	var wheight = 500; 
	var l = (screen.width-wwidht) / 2; 
	var t = (screen.height-wheight) / 2;	
	var config = " scrollbars=no, height="+wheight+", width="+wwidht+", status=yes, toolbar=no, menubar=no, location=no, left="+l+", top="+t; 
	var day = new Date();
	var id = day.getTime();
  var newWindow = window.open(URL, "Forum"+id, config);
}
/*FIN POP MAP GPS*/

function popUp2(URL) {
	var wwidht = 550;
	var wheight = 375; 
	var l = (screen.width-wwidht) / 2; 
	var t = (screen.height-wheight) / 2;	
	var config = " scrollbars=yes, height="+wheight+", width="+wwidht+", status=yes, toolbar=no, menubar=no, location=no, left="+l+", top="+t; 
	var day = new Date();
	var id = day.getTime();
  var newWindow = window.open(URL, "Forum"+id, config);
}

function openNewWindow(URLtoOpen, windowName, windowFeatures) {
	newWindow = window.open(URLtoOpen, windowName, windowFeatures); 
}
