function functOW(PH1,PH2,w,h)
{
	var w=window.open(PH1,PH2,"width=" + w + ",height=" + h + ",scrollbars=yes");
	w.focus();
}


function functMFW(PH1,PH2,w,h,pw,ph)
{

	var w=window.open(PH1,PH2,"width=" + (w+pw) + ",height=" + (h+ph) + ",scrollbars=no");
	w.focus();
}

