
function openPopUpWindow(iWidth, iHeight, strUrl, strTitle)
{
	strFeatures = 'width='+iWidth+',height='+iHeight+' ,scrollbars=yes';
	window.open(strUrl, strTitle, strFeatures);
}