function popup(url,width,height) {
	ok = window.open(url, '', 'width=' + width + ',height=' + height +',status=no,scrollbars=no,resizable=no')
	if (ok) return false;
	else return true;
}