var newwindow;

function popup(url, width, height)
{
	newwindow = window.open(url, 'name', 'height=' + height + ',width=690px;' + width + ',toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes');
	
	if(window.focus)
	{
		newwindow.focus()
	}
}
