// JavaScript Document

function ShowPopUp(sUrl, nWidth, nHeight)
  	{  
	window.open(sUrl, '_blank', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars, resizable');
	}
