// Stop framing
CheckParent();
    
function CheckParent() {
  if (parent != self) {
    parent.location.href = self.location.href;
  }
}
		      
		      
function OpenNewWindow(url,w,h,id) {
  w = window.open(url, "window"+id, "resizable=yes,width="+w+",height="+h);
  return true;
}
				  
function OpenNewWindow2(url,w,h,id) {
  w = window.open(url, "window"+id, "scrollbars=yes,menubar=yes,resizable=yes,width="+w+",height="+h);
  return true;
}
				      
function SetStatus(string) {
  self.status = string;
  return true;
}