function zoomImg(imgSrc, imgW, imgH, imgName) {
	nw = open('', '', 'height=' + imgH + ', width=' + imgW + ', top=' + (screen.height-imgH)/2 + ', left=' + (screen.width-imgW)/2);

  	nw.document.open();
	nw.document.write('<BODY style="margin:0px; padding: 0px">');
	nw.document.write('<a href="#"><img src="' + imgSrc + '" border=0 onClick=window.close()></a>');
	nw.document.write('</BODY>');
	nw.document.title = imgName;
	nw.document.close();
}

function popup(targetLink) {
	
	open(targetLink, '', 'scrollbars=yes, width=600, height=400, left='+(screen.width-600)/2+', top='+(screen.height-400)/2)
}

function imgPopup(type, id) {

	iW = open('/?p=admin&a=img&id='+id+'&type='+type, '', 'scrollbars=yes, width=600, height=400, left='+(screen.width-600)/2+', top='+(screen.height-400)/2)
}