
	
/************************************************/	
//OPEN WIN
function bigpicwin(img,txt) {
			picWin = window.open("","picWin",'toolbar=0,location=0,directories=0,status=0,menubar=0,top='+ ((screen.height/2)-(600/2)) +',left='+ ((screen.width/2)-(850/2)) +',scrollbars=0,resizable=0,width=850,height=650');
			picWin.document.write("<html><head><title>Necronauts</title><link rel='stylesheet' type='text/css' href='scripts/style.css'></head>");
			picWin.document.write("<body bgcolor='#666666' style='margin: 0px;'>");
			picWin.document.write("<table border='0' cellspacing='25' cellpadding='0'><tr><td align='left' valign='top'>");
			picWin.document.write("<img src='pic/"+ img +"' alt='' width='800'  border='0'>");
			picWin.document.write("<br><br><span class=''>");
			picWin.document.write(txt);
			picWin.document.write("</span><br><br>");
			picWin.document.write("<a href='javascript:this.close()'>Close window</a></td></tr>");
			picWin.document.write("</table></body></html>");
			picWin.document.close();
			
}
//END
/************************************************/
