
function getframe(thispage) {


if ((window == top) && window.frames)
   {if (-1 == thispage.indexOf("/",0)) 
        document.location = "index.htm?" + thispage
    else
	{ 
	if (thispage.indexOf("/",0) == thispage.lastIndexOf("/"))
            document.location = "../index.htm?" + thispage;   
        else
            document.location = "../../index.htm?" + thispage;  
	
	}
}
}
  
