/*-----------------------------------*/
/* This function displays the version of the programme or driver
 on the STARUS bar if the mouse is positioned over the link of program or driver*/
function DispStat()
{
  window.status = "what is this ?";
	
	/*document.forms.MyForm.whereismouse.value="Over the Picture"; 
	document.MyForm.whereismouse.style.color='red'; */
}
/*-----------------------------------*/
function ShowBigPicture(picture_index)
{  	
  NewWindow = window.open('','','width='+900+',height='+600+',toolbar=no,personalbar=no,copyhistory=no,directories=no,menubar=no,locations=no,status=no,scrollbars=yes,resizable=yes,	    fullscreen=no');
	
	NewWindow.document.open();
  
	NewWindow.document.writeln("<html>\n<head>\n</head>");
	NewWindow.document.writeln("<body leftmargin=0 topmargin=0 style=\"font-family:Arial, Helvetica,   sans-serif; font-size:11pt; background-color:#ffffff\">");
	NewWindow.document.writeln("<title>"+pictures[picture_index][1]+"</title>");
	NewWindow.document.writeln("<table width=100% height=100% style=\"font-family:Arial, Helvetica, sans-serif; font-size:11pt; background-color:#ffffff\">");
				
	NewWindow.document.writeln("<tr><td valign=center align=center>\n<a href=\"javascript:window.close();\"><img src="+pictures[picture_index][0]+" border=0></a></td></tr>");

	NewWindow.document.writeln("</table></body>\n</HTML>");
	NewWindow.document.close(); 
	NewWindow.focus(); 		
} 
/*-----------------------------------*/
