function Popup(url, width, height) {
	popupwindow = window.open(url, "popup", "width="+width+",height="+height+",status=no,scrollbars=no,resizable=no");
	popupwindow.focus();
	return false;
}