// Random Function for Taiwan web site front page random feature school pic and link
// Pop up and new window of the Big5 feature school profile page
// UScampus, Inc.
// 09-21-01

// Generate random number
// max_num = (max number of array) - 1
var max_num = 7;
// var j = Math.random(); 
var i = Math.round(max_num*Math.random()); 

// array for feature school name
var schoolNameArray = new Array;
schoolNameArray[0] = "UNIVERSITY OF SOUTH CAROLINA, COLUMBIA";
schoolNameArray[1] = "OREGON STATE UNIVERSITY";
schoolNameArray[2] = "UNIVERSITY OF CALIFORNIA, SAN DIEGO";
schoolNameArray[3] = "NEW YORK UNIVERSITY";
schoolNameArray[4] = "UNIVERSITY OF SOUTH DAKOTA";
schoolNameArray[5] = "MARYVILLE COLLEGE";
schoolNameArray[6] = "SALEM INTERNATIONAL UNIVERSITY";
schoolNameArray[7] = "PACE UNIVERSITY"; 

// array for feature school ID
// these must be in the same order of feature school name from above
var schoolIDArray = new Array;
schoolIDArray[0] = "245";
schoolIDArray[1] = "241";
schoolIDArray[2] = "207";
schoolIDArray[3] = "238";
schoolIDArray[4] = "247";
schoolIDArray[5] = "324";
schoolIDArray[6] = "366";
schoolIDArray[7] = "67"; 

// function to write the pic to the web page
function write_rand_pic(){
// document.write(i + '<br>' + j); 
   document.write('<a href="http://gb.uscampus.com/research_options/find_school/college/college_profile_gen.asp?lang=gb&ID=' + schoolIDArray[i] + '\" target=\"_blank\"><img border=\"0\" src=\"images/photos_schools/clg_univ/' + schoolIDArray[i] + '.jpg\" width=\"250\" height=\"150\" align=\"center\"></a>'); 
}

// function to write the link to the web page
function write_rand_link(){
   document.write('<a href=\"http://gb.uscampus.com/research_options/find_school/college/college_profile_gen.asp?lang=gb&ID=' + schoolIDArray[i] +'\" target=\"_blank\" class=\"MenuNav\"><b>' + schoolNameArray[i] + '</b></a>');
}
