function callPopUp(sPageToOpen, sWindowName, bScrollbars, bResizable, iWidth, iHeight, iTop, iLeft) {  
  var sOptions ='scrollbars='+bScrollbars
		+ ','
		+ 'resizable'+bResizable
		+ ','
		+ 'width='+iWidth
		+ ','
		+ 'height='+iHeight
		+ ',' 
		+ 'top='+iTop 
		+ ','
		+ 'left='+iLeft;  
		             
  var oWindow = window.open(sPageToOpen, sWindowName, sOptions);
  oWindow.focus();
}
