/**
 * Create a popup
 */
function popupWindow(url, height, width) {
	popupWindowObj = window.open(url,'name','height=' + height + ',width=' + width + ',scrollbars=yes,resizable=yes');
	if (window.focus) {
		popupWindowObj.focus();
	}
	return false;
}