function openCenteredWindow(url, name, width, height, features) {
  if(screen.width){
	  var winl = (screen.width-width)/2;
	  var wint = (screen.height-height)/2;
  } else {
		winl = 0;
		wint =0;
  }
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + height + ',';
  settings += 'width=' + width + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += features;
  win = window.open(url, name, settings);
  win.window.focus();
}

function openDolarPopup(context_path) {
	openCenteredWindow(context_path + '/popups/cotizacion.php', 'dolar_popup', 208, 128, 'scrollbars=no, resizable=no')
}

function openProductPopup(id, context_path) {
	openCenteredWindow(context_path + '/productos/producto.php?id=' + id, 'producto_popup', 440, 430, 'scrollbars=no, resizable=no')
}

function internalLink(link) {
	if (opener) {
		opener.location = link;
		opener.focus();
	} else {
		window.location = link;
	}
}

function noen() {
	alert("Coming soon!");
}

function _scr_clearContent(id_field, name_field) {
	document.getElementById(id_field).value = '';
	document.getElementById(name_field).innerText = "(Sin contenido)";
}