function imgWindow(img){	var popupWnd = window.open('', 'newImgWin', 'toolbar=no,scrollbars=no,width=1024,height=640');	popupWnd.document.open();	popupWnd.document.write('<html><head><title>'+ img  +'</title></head>');	popupWnd.document.write('<body topmargin="0" leftmargin="0" rightmargin="0" bgcolor="#2b2e32"><center>');	popupWnd.document.write('<a href="javascript:self.close()">');	popupWnd.document.write('<img src="' + img + '" border="0">');	popupWnd.document.write('</a></center></body></html>');	popupWnd.document.close();	popupWnd.focus();}

function imgSmallerWindow(img){	var popupWnd = window.open('', 'newImgWin', 'toolbar=no,scrollbars=no,width=800,height=600');	popupWnd.document.open();	popupWnd.document.write('<html><head><title>'+ img  +'</title></head>');	popupWnd.document.write('<body topmargin="0" leftmargin="0" rightmargin="0" bgcolor="#2b2e32"><center>');	popupWnd.document.write('<a href="javascript:self.close()">');	popupWnd.document.write('<img src="' + img + '" border="0">');	popupWnd.document.write('</a></center></body></html>');	popupWnd.document.close();	popupWnd.focus();}
function externalLinks() { if (!document.getElementsByTagName) return; var anchors = document.getElementsByTagName("a"); for (var i=0; i<anchors.length; i++) {   var anchor = anchors[i];   if (anchor.getAttribute("href") &&       anchor.getAttribute("rel") == "external")     anchor.target = "_blank"; }}