var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name','height=200,width=350,left=100,top=50,resizable=no,scrollbars=no,status=no');
	if (window.focus) {newwindow.focus()}
}