function pict()
{
/* set the number of pictures to rotate: b must be 2, 3, 4 or 5 */
var b=8;

/* set the picture source and display information  */
/* you will need a line in the array below for each picture */
/* note that the pictures in this array must correspond to the titles in the next array */
/* note also where single quotes are used and where double quotes are used */
p = new Object();
p[1]="<IMG SRC='images/PROSP_1a.jpg' WIDTH='174' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[2]="<IMG SRC='images/PROSP_1b.jpg' WIDTH='174' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[3]="<IMG SRC='images/PROSP_1c.jpg' WIDTH='174' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[4]="<IMG SRC='images/PROSP_1d.jpg' WIDTH='174' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[5]="<IMG SRC='images/PROSP_1e.jpg' WIDTH='174' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[6]="<IMG SRC='images/PROSP_1f.jpg' WIDTH='174' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[7]="<IMG SRC='images/PROSP_1g.jpg' WIDTH='174' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[8]="<IMG SRC='images/PROSP_1h.jpg' WIDTH='174' HEIGHT='134' BORDER='0' ALT='Current Students'>";
/*p[3]="<IMG SRC='put image info here and remove comment marks at beginning and end of line'>";*/

/* set the picture name to appear below the picture*/
/* you will need a line in the array for each title */
/*n = new Object();*/
/*n[1]="NYC Central Park";*/
/*n[2]="Indianapolis Lower Canal Facility";*/
/*n[3]="put name of picture here and remove comment marks at beginning and end of line";*/

/* create a random integer from 1 to the number of pictures */
	var a=Math.random();
	a=(a*10)+1;
	a=parseInt(a)
		if (a > 8)
		{
		a=a-8
		}
	
		if (a > b)
		{
		a=a-b
		}
/* if b is 2, a may still need to be adjusted downward by 1 */
/* this does tend to have image 2 display more frequently than image 1 */  
		if (a > b)
		{
		a=a-1
		}
	
/* display the picture based on the random integer */
/*	document.write(p[a]+"<BR>"+n[a]+"<BR>"); */
	document.write(p[a]);
}
function pict2()
{
/* set the number of pictures to rotate: b must be 2, 3, 4 or 5 */
var b=5;

/* set the picture source and display information  */
/* you will need a line in the array below for each picture */
/* note that the pictures in this array must correspond to the titles in the next array */
/* note also where single quotes are used and where double quotes are used */
p = new Object();
p[1]="<IMG SRC='images/PROSP_2a.jpg' WIDTH='326' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[2]="<IMG SRC='images/PROSP_2b.jpg' WIDTH='326' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[3]="<IMG SRC='images/PROSP_2c.jpg' WIDTH='326' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[4]="<IMG SRC='images/PROSP_2d.jpg' WIDTH='326' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[5]="<IMG SRC='images/PROSP_2e.jpg' WIDTH='326' HEIGHT='134' BORDER='0' ALT='Current Students'>";
/*p[3]="<IMG SRC='put image info here and remove comment marks at beginning and end of line'>";*/

/* set the picture name to appear below the picture*/
/* you will need a line in the array for each title */
/*n = new Object();*/
/*n[1]="NYC Central Park";*/
/*n[2]="Indianapolis Lower Canal Facility";*/
/*n[3]="put name of picture here and remove comment marks at beginning and end of line";*/

/* create a random integer from 1 to the number of pictures */
	var a=Math.random();
	a=(a*10)+1;
	a=parseInt(a)
		if (a > 5)
		{
		a=a-5
		}
	
		if (a > b)
		{
		a=a-b
		}
/* if b is 2, a may still need to be adjusted downward by 1 */
/* this does tend to have image 2 display more frequently than image 1 */  
		if (a > b)
		{
		a=a-1
		}
	
/* display the picture based on the random integer */
/*	document.write(p[a]+"<BR>"+n[a]+"<BR>"); */
	document.write(p[a]);
}

function pict3()
{
/* set the number of pictures to rotate: b must be 2, 3, 4 or 5 */
var b=7;

/* set the picture source and display information  */
/* you will need a line in the array below for each picture */
/* note that the pictures in this array must correspond to the titles in the next array */
/* note also where single quotes are used and where double quotes are used */
p = new Object();
p[1]="<IMG SRC='images/PROSP_3a.jpg' WIDTH='176' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[2]="<IMG SRC='images/PROSP_3b.jpg' WIDTH='176' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[3]="<IMG SRC='images/PROSP_3c.jpg' WIDTH='176' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[4]="<IMG SRC='images/PROSP_3d.jpg' WIDTH='176' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[5]="<IMG SRC='images/PROSP_3e.jpg' WIDTH='176' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[6]="<IMG SRC='images/PROSP_3f.jpg' WIDTH='176' HEIGHT='134' BORDER='0' ALT='Current Students'>";
p[7]="<IMG SRC='images/PROSP_3g.jpg' WIDTH='176' HEIGHT='134' BORDER='0' ALT='Current Students'>";
/*p[3]="<IMG SRC='put image info here and remove comment marks at beginning and end of line'>";*/

/* set the picture name to appear below the picture*/
/* you will need a line in the array for each title */
/*n = new Object();*/
/*n[1]="NYC Central Park";*/
/*n[2]="Indianapolis Lower Canal Facility";*/
/*n[3]="put name of picture here and remove comment marks at beginning and end of line";*/

/* create a random integer from 1 to the number of pictures */
	var a=Math.random();
	a=(a*10)+1;
	a=parseInt(a)
		if (a > 7)
		{
		a=a-7
		}
	
		if (a > b)
		{
		a=a-b
		}
/* if b is 2, a may still need to be adjusted downward by 1 */
/* this does tend to have image 2 display more frequently than image 1 */  
		if (a > b)
		{
		a=a-1
		}
	
/* display the picture based on the random integer */
/*	document.write(p[a]+"<BR>"+n[a]+"<BR>"); */
	document.write(p[a]);
}

function pict4()
{
/* set the number of pictures to rotate: b must be 2, 3, 4 or 5 */
var b=5;

/* set the picture source and display information  */
/* you will need a line in the array below for each picture */
/* note that the pictures in this array must correspond to the titles in the next array */
/* note also where single quotes are used and where double quotes are used */
p = new Object();
p[1]="<IMG SRC='images/PROSP.rc1.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: RC'>";
p[2]="<IMG SRC='images/PROSP.rc2.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: RC'>";
p[3]="<IMG SRC='images/PROSP.rc3.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: RC'>";
p[4]="<IMG SRC='images/PROSP.rc4.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: RC'>";
p[5]="<IMG SRC='images/PROSP.rc5.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: RC'>";
/*p[3]="<IMG SRC='put image info here and remove comment marks at beginning and end of line'>";*/

/* set the picture name to appear below the picture*/
/* you will need a line in the array for each title */
/*n = new Object();*/
/*n[1]="NYC Central Park";*/
/*n[2]="Indianapolis Lower Canal Facility";*/
/*n[3]="put name of picture here and remove comment marks at beginning and end of line";*/

/* create a random integer from 1 to the number of pictures */
	var a=Math.random();
	a=(a*10)+1;
	a=parseInt(a)
		if (a > 5)
		{
		a=a-5
		}
	
		if (a > b)
		{
		a=a-b
		}
/* if b is 2, a may still need to be adjusted downward by 1 */
/* this does tend to have image 2 display more frequently than image 1 */  
		if (a > b)
		{
		a=a-1
		}
	
/* display the picture based on the random integer */
/*	document.write(p[a]+"<BR>"+n[a]+"<BR>"); */
	document.write(p[a]);
}

function pict5()
{
/* set the number of pictures to rotate: b must be 2, 3, 4 or 5 */
var b=5;

/* set the picture source and display information  */
/* you will need a line in the array below for each picture */
/* note that the pictures in this array must correspond to the titles in the next array */
/* note also where single quotes are used and where double quotes are used */
p = new Object();
p[1]="<IMG SRC='images/PROSP.rhshp1.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: RHCHP'>";
p[2]="<IMG SRC='images/PROSP.rhshp2.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: RHCHP'>";
p[3]="<IMG SRC='images/PROSP.rhshp3.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: RHCHP'>";
p[4]="<IMG SRC='images/PROSP.rhshp4.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: RHCHP'>";
p[5]="<IMG SRC='images/PROSP.rhshp5.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: RHCHP'>";
/*p[3]="<IMG SRC='put image info here and remove comment marks at beginning and end of line'>";*/

/* set the picture name to appear below the picture*/
/* you will need a line in the array for each title */
/*n = new Object();*/
/*n[1]="NYC Central Park";*/
/*n[2]="Indianapolis Lower Canal Facility";*/
/*n[3]="put name of picture here and remove comment marks at beginning and end of line";*/

/* create a random integer from 1 to the number of pictures */
	var a=Math.random();
	a=(a*10)+1;
	a=parseInt(a)
		if (a > 5)
		{
		a=a-5
		}
	
		if (a > b)
		{
		a=a-b
		}
/* if b is 2, a may still need to be adjusted downward by 1 */
/* this does tend to have image 2 display more frequently than image 1 */  
		if (a > b)
		{
		a=a-1
		}
	
/* display the picture based on the random integer */
/*	document.write(p[a]+"<BR>"+n[a]+"<BR>"); */
	document.write(p[a]);
}

function pict6()
{
/* set the number of pictures to rotate: b must be 2, 3, 4 or 5 */
var b=5;

/* set the picture source and display information  */
/* you will need a line in the array below for each picture */
/* note that the pictures in this array must correspond to the titles in the next array */
/* note also where single quotes are used and where double quotes are used */
p = new Object();
p[1]="<IMG SRC='images/PROSP.sps1.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: CPS'>";
p[2]="<IMG SRC='images/PROSP.sps2.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: CPS'>";
p[3]="<IMG SRC='images/PROSP.sps3.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: CPS'>";
p[4]="<IMG SRC='images/PROSP.sps4.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: CPS'>";
p[5]="<IMG SRC='images/PROSP.sps5.jpg' WIDTH='186' HEIGHT='102' BORDER='0' ALT='Current Students: CPS'>";
/*p[3]="<IMG SRC='put image info here and remove comment marks at beginning and end of line'>";*/

/* set the picture name to appear below the picture*/
/* you will need a line in the array for each title */
/*n = new Object();*/
/*n[1]="NYC Central Park";*/
/*n[2]="Indianapolis Lower Canal Facility";*/
/*n[3]="put name of picture here and remove comment marks at beginning and end of line";*/

/* create a random integer from 1 to the number of pictures */
	var a=Math.random();
	a=(a*10)+1;
	a=parseInt(a)
		if (a > 5)
		{
		a=a-5
		}
	
		if (a > b)
		{
		a=a-b
		}
/* if b is 2, a may still need to be adjusted downward by 1 */
/* this does tend to have image 2 display more frequently than image 1 */  
		if (a > b)
		{
		a=a-1
		}
	
/* display the picture based on the random integer */
/*	document.write(p[a]+"<BR>"+n[a]+"<BR>"); */
	document.write(p[a]);
}
