﻿function imgRollOver(name,over)
{
	if(window.document.images) 
	{
		if (over) {
			window.document.images[name].src = "Images/" + name + "_On.gif";
		}
		else {
			window.document.images[name].src =  "Images/" + name + ".gif";
		}
	}
}
function openLink(linkAddress) 
{	
  newWindow = window.open(linkAddress,"ThomsonPlumb","width=467,height=282,scrollbars=no,resizable,toolbar=no,location=no,status=no,menubar=no,left=100,top=250");
  newWindow.focus();
}	
function popUpBio(URL) 
{
  day = new Date();
  id = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=400,height=320,left = " + ((screen.width - 400)/2) + ",top = " + ((screen.height - 320)/2) + "');");
}
function PrintThisPage() 
{ 
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
       sOption+="scrollbars=yes,width=650,height=600,left=100,top=25"; 

   var sViewHTML = document.getElementById('contentstart').innerHTML; 
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
       winprint.document.write('<html><body>'); 
       winprint.document.write(sViewHTML);          
       winprint.document.write('</body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}    