var newwindow;
function popwin(url)
{
	newwindow=window.open(url,'name','height=530,width=340');
	if (window.focus) {newwindow.focus()}
}

