function openwindow_hor (f) {		
						 window2 = window.open ("", 'first', 'width=690,height=565,resizable=no,location=no,toolbar=no,menubar=no,status=no,directories=no,scrollbars=yes');
						 window2.document.write ('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
						 window2.document.write ('<html><head><title>' + f + '<\/title>');
						 window2.document.write ('<link rel=stylesheet href="pics.css" type="text/css" media=screen><\/head>');
						 window2.document.write ('<body><center>');
						 window2.document.write ('<a href="javascript:self.close();"><img src="pics/' + f + '"><\/a>');
						 window2.document.write ('<p><a href="javascript:self.close();" class="linkpagelink">Close Window<\/a>');
						 window2.document.write ('<\/center><\/body><\/html>');
						 window2.document.close(); 

		}
						 
function openwindow_ver (f) {
						 window2 = window.open ("", 'first', 'width=520,height=700,resizable=no,location=no,toolbar=no,menubar=no,status=no,directories=no,scrollbars=yes');
						 window2.document.write ('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
						 window2.document.write ('<html><head><title>' + f + '<\/title>');
						 window2.document.write ('<link rel=stylesheet href="pics.css" type="text/css" media=screen><\/head>');
						 window2.document.write ('<body><center>');
						 window2.document.write ('<a href="javascript:self.close();"><img src="pics/' + f + '"><\/a>');
						 window2.document.write ('<p><a href="javascript:self.close();" class="linkpagelink">Close Window<\/a>');
						 window2.document.write ('<\/center><\/body><\/html>');
						 window2.document.close(); 
    }
		
function openwindow_cus (f, hor, ver) {		
						 window2 = window.open ("", 'first', 'width=' + hor + ',height=' + ver + ',resizable=no,location=no,toolbar=no,menubar=no,status=no,directories=no,scrollbars=yes');
						 window2.document.write ('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
						 window2.document.write ('<html><head><title>' + f + '<\/title>');
						 window2.document.write ('<link rel=stylesheet href="pics.css" type="text/css" media=screen><\/head>');
						 window2.document.write ('<body><center>');
						 window2.document.write ('<a href="javascript:self.close();"><img src="pics/' + f + '"><\/a>');
						 window2.document.write ('<p><a href="javascript:self.close();" class="linkpagelink">Close Window<\/a>');
						 window2.document.write ('<\/center><\/body><\/html>');
						 window2.document.close(); 

		}

