// JavaScript Document

var newwindow;
function pophelp(url)
{
	newwindow=window.open(url,'name','height=300,width=600,left=100,top=100,resizable=false,scrollbars=no,toolbar=no,status=yes,location=no,menubar=no,');

	if (window.focus) {newwindow.focus()}
}

