function pop(url)
{
	width=620;
	height=500;
	popup = window.open(url, 'popup', 'width=' + width + ',height=' + height + ',scrollbars=no');
	popup.focus();
	return;
}

