// JavaScript Document
/*ficha de producto*/
function popUp1(URL) {
	var wwidht = 500;
	var wheight = 600; 
	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 ficha de producto*/

/*mapa GPS*/
function popUp2(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 mapa GPS*/

/*mapa weather*/
function popUp3(URL) {
	var wwidht = 315;
	var wheight = 265; 
	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 weather*/

/*mapa trip advisory*/
function popUp5(URL) {
	var wwidht = 260;
	var wheight = 450; 
	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);
}
/*fin trip advisory*/


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