function open_win(sLoc)   {
   window.open(sLoc,'welcome','width=1100,height=700,menubar=yes,resizable=yes,status=yes,location=yes,toolbar=yes,scrollbars=yes');
}

function show_info( pFileName, pTitle, pCaption) {
	// specify window parameters
	infoWin = window.open( "", "info", "width=400,height=200,status,scrollbars,resizable,screenX=20,screenY=40,left=20,top=40");
	infoWin.focus(); 
	// wrote content to window
	infoWin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">');	
	infoWin.document.write('<html><head><title>Additional Information on bill ' + pTitle + '</title>');	
	infoWin.document.write('<link href="/_templates/main.css" rel="stylesheet" type="text/css" />');
	infoWin.document.write('</head>');
	//infoWin.document.write('<BODY BGCOLOR=#000000 TEXT=#FFFFCC LINK=#33CCFF VLINK=#FF6666>');
	infoWin.document.write('<BODY>');
	//infoWin.document.write('<span style="FONT-WEIGHT: bolder; FONT-SIZE: larger; FONT-FAMILY: Arial, helvetica; TEXT-ALIGN: center" >' + pCaption + '</span><br>');
	infoWin.document.write('<span style="FONT-FAMILY: Arial, helvetica; TEXT-ALIGN: left" >');
	infoWin.document.write('' + pFileName +'</span>');
	//infoWin.document.write('<font face="arial,helvetica">');	
	//infoWin.document.write( '"' + pTitle + '" info © Lorrie Lava<br>');
	//infoWin.document.write('<A HREF="mailto:lava@pele.bigu.edu">lava@pele.bigu.edu</A><br>');
	//infoWin.document.write('Volcanic Studies, <A HREF="http://www.bigu.edu/">Big University</A>');
	infoWin.document.write('</body></html>');
	infoWin.document.close();	
	
	// If we are on NetScape, we can bring the window to the front
	if (navigator.appName.substring(0,8) == "Netscape") infoWin.focus();
}

function show_bill(pHref) {
	// specify window parameters
	billWin = window.open( pHref, "win", "width=700,height=500,status,scrollbars,location=yes,resizable,screenX=20,screenY=40,left=20,top=40");
    //alert('show bill');	
    billWin.focus(); 
}