// JavaScript Document

function popupWindow(target) {
	var left = (screen.width / 2) - 200;
	var top = (screen.height / 2) - 200;
	img = window.open(target, '_blank','menubar=no,scrollbars=yes,status=no,width=400,height=400,top=' + top + ',left=' + left);
}
