var e;
function pd(html, w, h)
{
    w = 250;
    h = 80;
    e = window.open(html, 'html', 'scrollbars=yes,width=' + w + ',height=' + h);
    if (window.focus) { e.focus(); }
}
function ph(html, w, h)
{
	w = 1000;
	h = 800;
	e = window.open(html, 'html', 'scrollbars=yes,width=' + w + ',height=' + h);
	if (window.focus) { e.focus(); }
}

var e;
function pd2(html, w, h)
{
    w = 450;
    h = 140;
    e = window.open(html, 'html', 'scrollbars=yes,width=' + w + ',height=' + h);
    if (window.focus) { e.focus(); }
}

