var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name','height=350,left=100,top=100,width=320,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
