function OpenPopup(WhatURL,Title,W,H) 
{
	alfa=window.open(WhatURL ,Title, "scrollbars=yes,toolbar=no,directories=no,menubar=no,width=" + W + ",height=" + H);
	alfa.resizeTo(W, H);
	alfa.focus();
}
