// JavaScript Document
if (window != top) top.location.href = location.href;
self.moveTo(0,0);
self.resizeTo(screen.availWidth,screen.availHeight);


//CREATES POP-UP WINDOW
function popup(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
