// JavaScript Document

// script per popup editabile
function show_photo( pFileName, pTitle, pCaption) {

// specify window paramaters
	photoWin = window.open( "", "photo", "width=470,height=620,status=no,scrollbars=no,resizable=no,screenX=20,screenY=40,left=20,top=40");

// wrote content to window
	photoWin.document.write('<html><head><title>' + pTitle + '</title></head>');	
	photoWin.document.write('<BODY BGCOLOR=#ffffff TEXT=#FFFFCC LINK=#33CCFF VLINK=#FF6666 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>"');
	photoWin.document.write('<center>');
	photoWin.document.write('<font size=+3 face="arial,helvetica"><b>' + pCaption + '</b></font>');
	photoWin.document.write('<img src="' + pFileName + '">');
	photoWin.document.write('<font face="arial,helvetica">');	
	//photoWin.document.write( '"' + pTitle + '" photo &copy; Lorrie Lava<br>');
	//photoWin.document.write('<A HREF="mailto:lava@pele.bigu.edu">lava@pele.bigu.edu</A><br>');
	//photoWin.document.write('Volcanic Studies, <A HREF="http://www.bigu.edu/">Big University</A>');
	photoWin.document.write('</font></body></html>');
	photoWin.document.close();	
	
// If we are on NetScape, we can bring the window to the front
	if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();

}
// done hiding from old browsers -->

//-----------------------

// script per popup editabile
function show_photo_vert( pFileName, pTitle, pCaption) {

// specify window paramaters
	photoWin = window.open( "", "photo", "width=620,height=470,status=no,scrollbars=no,resizable=no,screenX=20,screenY=40,left=20,top=40");

// wrote content to window
	photoWin.document.write('<html><head><title>' + pTitle + '</title></head>');	
	photoWin.document.write('<BODY BGCOLOR=#ffffff TEXT=#FFFFCC LINK=#33CCFF VLINK=#FF6666 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>"');
	photoWin.document.write('<center>');
	photoWin.document.write('<font size=+3 face="arial,helvetica"><b>' + pCaption + '</b></font>');
	photoWin.document.write('<img src="' + pFileName + '">');
	photoWin.document.write('<font face="arial,helvetica">');	
	//photoWin.document.write( '"' + pTitle + '" photo &copy; Lorrie Lava<br>');
	//photoWin.document.write('<A HREF="mailto:lava@pele.bigu.edu">lava@pele.bigu.edu</A><br>');
	//photoWin.document.write('Volcanic Studies, <A HREF="http://www.bigu.edu/">Big University</A>');
	photoWin.document.write('</font></body></html>');
	photoWin.document.close();	
	
// If we are on NetScape, we can bring the window to the front
	if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();

}
// done hiding from old browsers -->

