// JavaScript Document

function readCookie(name)
{
  var cookieValue = "";
  var search = name + "=";
  if(document.cookie.length > 0)
  { 
    var offset = document.cookie.indexOf(search);
    if (offset != -1)
    { 
      offset += search.length;
      end = document.cookie.indexOf(";", offset);
      if (end == -1) end = document.cookie.length;
      cookieValue = unescape(document.cookie.substring(offset, end))
    }
  }
  return cookieValue;
}

function votaPopUp(file) 
{
	var popwin;
	var leftval=(screen.width-350)/2;
	var topval=(screen.height-220)/2;
	popwin=window.open(file, null, "width=350,height=220,top=" + topval + ",left=" + leftval + ",toolbar=0,scrollbars=1,directories=no,location=0,statusbar=0,menubar=0,resizable=0");
	popwin.focus();
}

function onLoad(file)
{
	if (readCookie("VotoCamaraGranada") == "") {
		votaPopUp(file);
		document.cookie = "VotoCamaraGranada=si";
	}
}
