var filepath = self.location.href;
var filename = filepath.substr(filepath.lastIndexOf("/")+1);
var url = "http://www.valledeguriezo.com/";

if(top != self) { top.location=url+filename; }

function openPopup(theURL, width, height) {
    var ah = screen.availHeight - 30;
    var aw = screen.availWidth - 10;
    var xc = (aw - width) / 2;
    var yc = (ah - height) / 2;

    var size = "height=" + height + ",innerHeight=" + height;
    size += ",width=" + width + ",innerWidth=" + width;  

    size += ",left=" + xc + ",screenX=" + xc;
    size += ",top=" + yc + ",screenY=" + yc;
	
    window.open(url+'popups/'+theURL+'.shtml','','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,'+size);
}
