self.focus();
var l = parent.frames.length;
if(l > 0) {
	for(var i=0;i<l;i++) {
		if(parent.frames[i].location.href == self.location.href) {
			if(parent.frames[i].innerWidth < 780 || parent.frames[i].innerWidth == undefined) {
				top.location = self.location;
			}
		}
	}
}

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
    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';
  }
 }
}