// JavaScript Document
	function over(img1,ref1)
		{if (document.images){document.images[img1].src = ref1;}}
	function notover(img1,ref1)
		{if (document.images){document.images[img1].src = ref1;}}
<!--
function load_images() {
var image1 = new Image();
image1.src = 'menus_files/nav_endorsements_on.gif';
var image2 = new Image();
image2.src = 'menus_files/nav_training_on.gif';
var image3 = new Image();
image3.src = 'menus_files/nav_links_on.gif';
}  //-->


timeout =0; // Close window after __ number of seconds?
// 0 = do not close, anything else = number of seconds
 
function Start(URL, WIDTH, HEIGHT) {
windowprops = "left=50,top=50,width=" + (WIDTH+50) + ",height=" + (HEIGHT+50);
 
text = "<HTML><HEAD><TITLE>Larger View</TITLE></HEAD><BODY background='white'";
 
if (timeout != 0) text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\"";
 
text += "><center><img src='" + URL + "'>";
 
if (timeout != 0) text +="<br><font face='arial, helvetica' size='-1'>Preview closes after " + timeout + " seconds.</font>";
 
text += "</center></BODY></HTML>";
 
preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}