var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name','height=275,width=700');
	if (window.focus) {newwindow.focus()}
}

