function openPopup(url, width, height)
{
	var result = window.open(url, "popupWindow", "resizable=no,menubar=no,scrollbars=no,status=no,toolbar=no,height="+height+",width="+width);
	result.moveTo((screen.availWidth-width)/2,(screen.availHeight-height)/2);
	return result;
}