function p(name, w, h) 
{

	e = window.open(name, 'popup', 'scrollbars=yes,width=' + w + ',height=' + h);

	if (window.focus) {
		e.focus(); }

	return false;

}
