var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name','toolbar=no,scrollbars=yes,resizable=yes,height=450,width=590');
	if (window.focus) {newwindow.focus()}
	return false;

}
