
//if ((top != self.parent) || (top == self))
//{
//	top.location = 'default.asp';
//}


//if (top.location == self.location) location.href = 'default.asp';


// if (window == top) top.location.href = "default.asp";


setTimeout ("bytSida()",2000);

function bytSida() {
  if (self.parent.frames.length == 0)
  self.parent.location="/default.asp";
}

function openpage (inPage, w, h) 
{
 var wPage = open(inPage,"page","menubar,resizable,scrollbars,height="+h+",width="+w);
 if (wPage == null)
 {
 alert ("Ett fel uppstod.");
 }
 else
 {
 wPage.location = inPage;
 document.isUnloading = false;
 }
} 