
function windowOpenCentered(new_url, w, h){
	newWindow = window.open(new_url,'','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width='+w+',height='+h);
	newWindow.moveTo(0 + (screen.width - w)/2,0 + (screen.height - h)/2);
}

function openImage(new_url, new_title, w, h) {
		width = w+20;
		height = h+20;
		x = 0 + (screen.width - width)/2;
		y = 0 + (screen.height - height)/2;
		newWindow = window.open('','','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width='+width+',height='+height);
		newWindow.moveTo(x,y);
		newDoc = newWindow.document;
		newContent = '<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">';
		newContent += '<title>'+new_title+'</title>';
		newContent += '</head><body bgcolor="#595959" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">';
		newContent += '<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0" align="center">';
		newContent += '<tr><td align="center"><img src="'+new_url+'" alt="'+new_title+'" width="'+w+'" height="'+h+'" vspace="0" hspace="0" border="0" align="top" style="border:1px Solid #c3c3c3;"></td></tr>';
		newContent += '</table></body></html>';
		newDoc.write(newContent);
		newDoc.close();
	}

