// Filename: openWindow.js
// Modified by: Monique on October 10, 2006// 

<!--

//THIS IS JUST THE SCRIPT TO OPEN THE INSTRUCTIONS BOX

function instructions()
{
	var rightStart = 0;   // starting position depends on screen width
	var topStart = 5;   // fixed starting position, be careful

	if ( screen ) {
	  leftStart = (screen.width/2);
	}
newWindow = window.open("standards.html", "newWin", 

"width=425,height=300,left="+leftStart+",top="+topStart)
}


-->

