function verf(u,p)
{
	switch(u.toLowerCase()){
		
		case "pablo":
			if (p.toLowerCase() == "colombia"){
				opener.location = "M(...)/bullets5.html";
				self.close();
				SetCookie("pwd","ok");
				break;
			}
		case "marcia":
			if (p.toLowerCase() == "colombia"){
				opener.location = "M(...)/bullets5.html";
				self.close();
				SetCookie("pwd","ok");
				break;
			}
			else{
				alert("Invalid password!");
				self.close()
				break;
			}
		default:
			if (p.toLowerCase() == "colombia"){
				opener.location = "M(...)/bullets5.html";
				SetCookie("pwd","ok");
				self.close();
				break;
			}
			else{
				alert("Invalid password!");
				self.close()
				break;
			}
	}
}


function fnopen(){
if (GetCookie("pwd") == "ok"){
  self.location = "M(...)/bullets5.html";
}
else{
window.open("p.html","","Height=170px,Width=260,left=300,top=300,scrollbars=no,help=no,status=no,resizable=no,toolbar=no,menubar=no,titlebar=no");
}
}

function SetCookie(sName, sValue)
{
  document.cookie = sName + "=" + escape(sValue) + ";"
  
}

function GetCookie(sName)
{
  // cookies are separated by semicolons
  var aCookie = document.cookie.split("; ");
  for (var i=0; i < aCookie.length; i++)
  {
    // a name/value pair (a crumb) is separated by an equal sign
    var aCrumb = aCookie[i].split("=");
    if (sName == aCrumb[0]) 
      return unescape(aCrumb[1]);
  }

  // a cookie with the requested name does not exist
  return null;
}
