<!--
		
	if(document.images)
		{
			M_imagefile=new Array();
			M_imagefile[0]="images/main_menu_class_left.jpg";
			M_imagefile[1]="images/main_menu_class_left_over.jpg";
			M_imagefile[2]="images/main_menu_classquestion.jpg";
			M_imagefile[3]="images/main_menu_classquestion_over.jpg";
				
			M_images=new Array();
				
			for (var M_index=0; M_index<M_imagefile.length; M_index++)
				{
					M_images[M_index]=new Image();
					M_images[M_index].src=M_imagefile[M_index];
				}
		}
		
			
				
	function toggleImage(M_imgID,M_index)
			{
				var M_strImageElement = null;				
				
						
				if (FD_isDHTML)
					{
						M_strImageElement = findDOM(M_imgID, 0);
						M_strImageElement.src = M_images[M_index].src;
							
					}
				else
					{
						return null;
					}
			}	
			
	
	function showPicture(intHeight,intWidth,strImageFilename,strTitle)
		{
			strParameters="";
			strParameters ='height=' + intHeight + ',width=' + intWidth + ',top=70,left=70';
			intVertPos=0;
			intVertPos=((intHeight/2)-20);
			var newWindow=null;	
			strImageFilename = "photos\/" + strImageFilename;	
													
			newWindow = window.open('','remote',strParameters);
			newWindow.document.write('<html><head><title>' + strTitle + '<\/title><\/head><BODY onblur="self.close();">');			
			newWindow.document.write('<IMG src="' + strImageFilename + '" style="Z-INDEX: 110; LEFT: 0px; POSITION: absolute; TOP: 0px">');
			newWindow.document.write('<DIV style="DISPLAY: inline; Z-INDEX: 80; LEFT: 0px; WIDTH: 100%; POSITION: absolute; TOP: ' + intVertPos + 'px; HEIGHT: 40px" align="center" ms_positioning="FlowLayout">Downloading..... <br>Please Wait</DIV>');
			newWindow.document.write("<\/body><\/html>");
			if(navigator.appName.indexOf('Microsoft Internet Explorer')!=-1)
				{
					newWindow.document.location.reload();	
				}	
								
			newWindow.focus();		
		}		
			
		
//-->	



