function releaseMe (){
		if (top.location != location)top.location.href = document.location.href;
}
function showImage(imageNum){ 

		setWidth = 640;
		setHeight = 490;
				
		if (imageNum < 10)imageNum = "0" + imageNum;
		
	     	SetLeft = (screen.width - setWidth) / 2;
     		SetTop = (screen.height - setHeight) / 2;

           	setWindow = "top="+SetTop+", left="+SetLeft+", toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,width="+setWidth+",height="+setHeight; 
       	          	
		maraswindow = window.open("" , "maraswindow", setWindow);
		
		maraswindow.document.write ("<html><head><title>M a r a s</title>");
		maraswindow.document.write ("<link rel='stylesheet' href='image.css'>");
		maraswindow.document.write ("</head>");
		maraswindow.document.write ("<body onload='window.focus()'>");
		maraswindow.document.write ("<a href='javascript:window.close();'><img src='images/pic-" + imageNum +".jpg'></a>");
		maraswindow.document.write ("</body></html>");
}
function showApp(appNum,imageNum){ 

		setWidth = 640;
		setHeight = 490;
				
		if (imageNum < 10)imageNum = "0" + imageNum;
		
	     	SetLeft = (screen.width - setWidth) / 2;
     		SetTop = (screen.height - setHeight) / 2;

           	setWindow = "top="+SetTop+", left="+SetLeft+", toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,width="+setWidth+",height="+setHeight; 
       	          	
		maraswindow = window.open("" , "maraswindow", setWindow);
		
		maraswindow.document.write ("<html><head><title>M a r a s</title>");
		maraswindow.document.write ("<link rel='stylesheet' href='image.css'>");
		maraswindow.document.write ("</head>");
		maraswindow.document.write ("<body onload='window.focus()'>");
		maraswindow.document.write ("<a href='javascript:window.close();'><img src='images/app" + appNum +"-" + imageNum +".jpg'></a>");
		maraswindow.document.write ("</body></html>");
}
