var newWindow
var newContent
var pic
var width
var height
var top
var left
function imagePopUp(pic,width,height,top,left) {
	if (!newWindow || newWindow.closed) {
		if(parseInt(width)<1){
			winwidth=420;
		}else{
			winwidth=parseInt(width)+10;
		}
		if(parseInt(height)<1){
			winheight=420;
		}else{
			winheight=parseInt(height)+10;
		}
		newWindow = window.open('','','toolbar=0,location=0,scrollbars=0,menubar=0,resizable=0,status=0,height=' + winheight + ',width=' + winwidth + ',top=' + top + ',left=' + left);

		newContent = '<html><head><title>The Georgia Sex Offenders Network - GeorgiaSexOffenders.net</title></head>';
		newContent += '<body style="margin:0;background-color:#fff;" onblur="self.close();"><a href="#" onclick="self.close(); return false;"><img src="offender_image.cfm?id=' + pic + '" alt="Click here to close this window" border="0"></a></body></html>';

		newWindow.document.write(newContent);
		newWindow.document.close();
	} else {
		newWindow.focus();
	}

}