// JavaScript Document

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