var newwindow;
function pop(url)
{
	newwindow=window.open(url,'name','height=600,width=600,scrollbars=yes,resizable=yes,toolbar=yes,menubar=yes,location=yes,status=yes');
	if (window.focus) {newwindow.focus()}
}
