<!--
var newWind;
var lOpened=false;
function openwindow(cPicture,nWidth,nHeight,cMessage,nBorder){
		 var output;
		if (lOpened){
		   //newWind.close();
		}
		lOpened=true;
		 newWind=window.open("","winnam","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=yes,resizable=yes,top=0,left=0");
		 output="<HTML><HEAD><title>On The Rock Ministries - Larger View-</title></HEAD><BODY BGCOLOR='ffffff' topmargin='0' leftmargin='0' marginwidth='0' marginheight='0' rightmargin='0' onload='self.focus(); self.moveTo(0,0);'><CENTER>"
		 output+="<table width='100%' border='0' cellspacing='0' cellpadding='5'><tr bgcolor='#0099cc'> <td><img src='images/spacer.gif' width='126' height='2'></td></tr></table>"
 		 output+="<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td align='left' valign='top' bgcolor='#000000'><img src='images/spacer.gif' width='1' height='1'></td></tr></table>"
		 output+="<table width='100%' border='0' cellspacing='0' cellpadding='2'><tr align='center' bgcolor='#8FB5CB'> <td><font face='Verdana, Arial, Helvetica, sans-serif' size='2' color='#ffffff'><b>"+cMessage+"</b></font></td></tr></table>"
		 output+="<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td align='left' valign='top' bgcolor='#000000'><img src='images/spacer.gif' width='1' height='1'></td></tr></table>"
		 output+="<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td><img src='images/spacer.gif' width='120' height='16'></td></tr></table>"
		 //if (nBorder==1) {
		 	//output+="<TABLE BORDER='1'><TR><TD>"
		 //}
		// output+="<IMG SRC='"+cPicture+"'>"
		 //if (nBorder==1){
		 	//output+="</TD></TR></TABLE>"
		 
		 //}
		 output+="<table width='120' height='16' border='0' cellspacing='0' cellpadding='0' background='images/load_2.gif'><tr><td><img src='"+cPicture+"'></td></tr></table>"
		 output+="<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td><img src='images/spacer.gif' width='100' height='10'></td></tr></table>"
                 output+="<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr bgcolor='#333333'> <td><img src='images/shim.gif' width='1' height='1'></td></tr></table>"
                 output+="<TABLE BORDER='0'><TR><TD><A href='javascript:parent.close();'><IMG alt='Close Window' border=0 height=15 src='images/but_close.gif' width=165></A>"
		 output+="<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td><img src='images/shim.gif' width='7' height='20'></td></tr></table>"
		 output+="</TD></TR></TABLE></CENTER></BODY></HTML>"
		 newWind.document.write(output);
		 newWind.document.close();
		 newWind.focus();
		 
}
//-->
