  Rollimage = new Array()

  Rollimage[0]= new Image(31,31)
  Rollimage[0].src = "images/enter_off_onSalmon.gif"

  Rollimage[1] = new Image(31,31)
  Rollimage[1].src = "images/enter_on_onSalmon.gif"

  function SwapOut(){
    document.intro.src = Rollimage[1].src;
    return true;
  }

  function SwapBack(){
    document.intro.src = Rollimage[0].src; 
    return true;
  }
  function Go() {
  	 mainWindow=window.open("movie.php","MainWindow","width=820,height=520,scrollbars=no");
  }
function NewWindow(mypage, myname, w, h, scroll) { 
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2; 
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable' 
win = window.open(mypage, myname, winprops) 
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); } } 

function NewArticle(mypage, w, h) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
var ww = w * 1 + 20;
var hh = h * 1 + 20; 
winprops = 'height='+hh+',width='+ww+',top='+wint+',left='+winl+',scrollbars=no,resizable' 
mypageurl = 'txt_files/articles/'+mypage
win = window.open(mypageurl, 'Articles', winprops) 
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); } }

