x = 0
while ((x < 1) || (x > 5)){
  RndmNum();}
TopImg = '<img src="../images/faces/top_' + x + '.jpg" width="150" height="60" border="0">';
MidImg = '<img src="../images/faces/mid_' + x + '.jpg" width="150" height="1" border="0">';
BotImg = '<img src="../images/faces/bot_' + x + '.jpg" width="150" height="199" border="0">';

// Main Menu Rollovers
function mOver(Name)
  {var Swap = 'document.' + Name + '.src = "../images/menu/' + Name + '_on.gif"';
  eval(Swap);}

function mOut(Name)
  {var Swap = 'document.' + Name + '.src = "../images/menu/' + Name + '_off.gif"';
  eval(Swap);}
//

// Random Image Generator
function RndmNum(){
  x = Math.random();
  x = x * 100;
  x = Math.round(x);}
  
//popup window
function PopupWin(theURL,winName,features) {
	winName = window.open(theURL,'popupwin',features);
}

function ClosePopup(winName) {
	winName.close()
}