var newWindow

function generic_popup(url)
{
	newWindow=window.open(url,"_blank", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=875, height=675");

	if (window.focus) 
	{
		newWindow.focus()
	}
}