// JavaScript Document
function openWin(url,title,w,h,scroll,resize) {
	if(scroll == null)
		scroll = "no";
	if(resize == null)
		resize = "no";
	window.open(url, title,"scrollbars=" + scroll + ",toolbars=no,location=no,status=no,directories=no,resizable=" + resize + ",height="+h+",width="+w);
}

function hideDiv(pass) {
var divs = document.getElementsByTagName('div');
for(i=0;i<divs.length;i++){
if(divs[i].id.match(pass)){//if they are 'see' divs
if (document.getElementById) // DOM3 = IE5, NS6
//document.poppedLayer = eval('document.getElementById("512a")');
divs[i].style.visibility="hidden";// show/hide
else
if (document.layers) // Netscape 4
document.layers[divs[i]].display = 'hidden';
else // IE 4
document.all.hideShow.divs[i].visibility = 'hidden';
}
}
//document.poppedLayer.style.display = "none";
}

function showDiv(pass) {
var divs = document.getElementsByTagName('div');
for(i=0;i<divs.length;i++){
if(divs[i].id.match(pass)){
if (document.getElementById)
divs[i].style.visibility="visible";
else
if (document.layers) // Netscape 4
document.layers[divs[i]].display = 'visible';
else // IE 4
document.all.hideShow.divs[i].visibility = 'visible';
}
}

}

function checkForBreakOut (){
host = "http://muchomasmayo.com";
if (top.location != location) {
    top.location.href = host;
  }
}

checkForBreakOut(); //lets go



