function pop(url)
{
	newwindow=window.open(url,'name','height=400,width=600,resizable=yes,menubar=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}

