function popWindow(url, name, width, height, scrollbars)
{
	var opts =
"toolbar=no,status=no,location=no,menubar=no,scrollbars=no,resizable=no";
	opts += ",height=" + height + ",width=" + width + ",scrollbars=" +
scrollbars;
	window.open(url, name, opts);
}
