function moving1(){
window.location=transfer('http://users.adelphia.net/~jrfrench/myclasses/class_index.htm');
}
function picpopup(){
window.open('firstpage/popup_redirect.htm','','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=200,height=320');
}


<!-- Begin
// Copyright 2001 by www.CodeBelly.com
// Do *not* remove this notice.

// To launch when the page loads, use an onload event in the body tag, like this:
// <body onload="popMe()">

// Set the url of the popup window page.
var U = "popup.htm";

var X = 100; // x position
var Y = 100; // y position
var W = 300; // width
var H = 175; // height

// Do not edit below this line.
var s="resizable,left="+X+",top="+Y+",screenX="+X+",screenY="+Y+",width="+W+",height="+H;
function popMe(){
var SGW = window.open(U,'TheWindow',s)
}
// **********   End -->



<!--
function picpopup_index(){
window.open('popup_redirect.htm','','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=215,height=145');
}
function picture1(){
window.open('pictures/pic_popup1.htm','','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=205,height=251');
}
function picture2(){
window.open('pic_popup2.htm','','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=385,height=507');
}
function picture3(){
window.open('pic_popup1.htm','','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=205,height=251');
}
function wrong(){
window.open('wrong.htm','','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=205,height=251');
}
function correct(){
window.open('correct.htm','','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=205,height=251');
}
function iris(){
window.open('links/iris.htm','','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=250,height=339');
}

// **********   End -->


<!--- Start hiding from non-JavaScript browser
function DishName(Day) {
	var DName = new Array();
		DName[0]="Today is Sunday";
		DName[1]="Today is Monday";
		DName[2]="Today is Tuesday";
		DName[3]="Today is Wednesday";
		DName[4]="Today is Thursday";
		DName[5]="Today is Friday";
		DName[6]="Today is Sturday";
return DName[Day];
}

function DishDesc(Day) {
	var DDesc = new Array();
		DDesc[0]="No Classes on Sunday!!";
		DDesc[1]="Don't you just hate Mondays!!";
		DDesc[2]="Karaoke Night at Coyotes!!";
		DDesc[3]="Uno Night!!";
		DDesc[4]="No Classes on Thursday!!";
		DDesc[5]="TGIF!!"
		DDesc[6]="NO WORRIES!!";
	return DDesc[Day];		
}

//Stop hiding -->





<!-- 
function transfer(url)
{
	window.opener.location = url;
	self.close();
}
// **********   End -->


<!-- 
redirTime = "3000";
redirURL = "../index.htm";
function redirTimer() 
{ 
self.setTimeout("self.location.href = redirURL;",redirTime); }
// **********   End -->

<!-- 
redirTime3 = "1000";
redirURL3 = "http://members.mint.net/~pepjf";
function redirTimer3() 
{ 
self.setTimeout("self.location.href = redirURL3;",redirTime3); }
// **********   End -->





<!--
function DisplayPopUp( ) {
  var PERCENT = 1;    // Set this to the Percentage of users to see PopUp
  // example: percent = 4, 25% of the people will get the popup or 1 in 25
  var PAGECODE = "060170"; // code for page location
     // page codes:
     // ENGLISH - 060170 = home
     //           022571 = products main
     //           102693 = support main
     //           062298 = enterprise main
     //           052993 = smb main
     //           051494 = consumer main
     //           052588 = gem main
  var Height  = 425;   // Height and Width of popup window
  var Width   = 525;
  var URL     = "http://www.realityresearch.com/eval1/cq_invite.html"; // URL of new Window
  var Debug   = 0;     // Set this to 1 to turn on Testing Mode (0 otherwise)

  var oneDay = 24 * 60 * 60 * 1000;  // (milliseconds)
  var oneMonth= oneDay * 180;

  var expDate = new Date( );
  expDate.setTime( expDate.getTime( ) + oneDay * 10 ); // Expires in Ten Days

  // ----- DO NOT MODIFY BELOW THIS LINE ------
  var agent = navigator.userAgent;
  if ( agent.indexOf( 'Mozilla' ) != -1 ) { // almost all browsers send this
    // only select users who haven't seen the popup recently.
    if ( ( ! HasSurveyCookie() ) || Debug ) {
      // only select a percentage of those potential users.
      var theDate = new Date( );
      if ( ( theDate.getTime( ) % 100 ) < PERCENT ) {
        // try to set the cookie.
        document.cookie = 'survey=true; expires=' + expDate.toGMTString( ) + '; path=/';
        // if they accepted the cookie; give them the popup!
        if ( HasSurveyCookie( ) ) {
          window.open( URL + "?" + PAGECODE, 'SurveyPopUp','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,top=40,left=40,width=' + Width + ',height=' + Height);
        }
      }
    }
  }
}

function HasSurveyCookie( ) {
  var idx = parseInt( document.cookie.indexOf( 'survey' ) );
  return ( idx > -1 );
}


var pong;

function makeArray(n){
  this.length = n;
  for (i=1;i<=n;i++){
    this[i]=0;
  }
  return this;
}

// standard date display function with y2k compatibility

function displayDate() {
  var this_month = new makeArray(12);
    this_month[0]  = "January";
    this_month[1]  = "February";
    this_month[2]  = "March";
    this_month[3]  = "April";
    this_month[4]  = "May";
    this_month[5]  = "June";
    this_month[6]  = "July";
    this_month[7]  = "August";
    this_month[8]  = "September";
    this_month[9]  = "October";
    this_month[10] = "November";
    this_month[11] = "December";
  var today = new Date();
  var day   = today.getDate();
  var month = today.getMonth();
  var year  = today.getYear();
  if (year < 1000) {
    year += 1900;
  }
  
  return(this_month[month]+" "+day+", "+year);
}

function adjustMenu (itemNum) {
        if (itemNum != "default") {
                document.LocationRedirect.siteProduct.selectedIndex = itemNum;
        } else {
                document.LocationRedirect.siteProduct.selectedIndex = 0;
        }
}
function setPage (newAddress) {
        if (newAddress != "") { window.location.href = newAddress; }
}
// -->

<!-- Begin
var i = 0;
var done = 0;
var totalSecs = 5;
function SecondPast() {
if(totalSecs != null) timerId = setTimeout("SecondPast()", 1000);
if(i < totalSecs) {
i += 1;
document.clock.seconds.value = totalSecs - i;
   }
}
//  End -->

