/* example : <a href="http://www.myopenbox.org" onclick="popUp(this.href, '', 725, 450, location, scrollbars, resizable, status, toolbar, menubar); return false;"> test </a> */
function popUp(href, winName, w, h, location, scrollbars, resizable, status, toolbar, menubar){
	var winLeft=(screen.width - w) / 2;
	var winTop=(screen.height - h) / 2;
	winProps="width=" + w + ",height=" + h + ",top=" + winTop + ",left=" + winLeft + ",location=" + location + ",scrollbars=" + scrollbars + ",resizable=" + resizable + ",status=" + status + ",toolbar=" + toolbar + ",menubar=" + menubar;
	winOpen=window.open(href, winName, winProps);
	winOpen.window.focus();
}
