/**
 * @author ctltc.adams
 */
function random_imglink(){
	
for (i=0; i<3; i++){
  
	var n=Math.floor(Math.random()*images.length)

	if (n==0)
		n=1

	document.write('<img src="'+images[n]+'" border=0 width=134 height=101>')
	
	images.splice(n,1)
}
}

function printable()
{ 
  var content_text = document.getElementById("text").innerHTML; 
  
  var docprint=window.open(); 
   docprint.document.open(); 
   docprint.document.write('<html><head><title>Dept. of Engineering and Physics - Murray State University</title>'); 
   docprint.document.write('</head><body onLoad="self.print()">');          
   docprint.document.write(content_text);          
   docprint.document.write('</body></html>'); 
   docprint.focus(); 
}