	//Show Application Modal Webdialog
	function ModalShowPopUp(url, iHeight, iWidth)
	{	
		var sOpt ="dialogHeight: " + iHeight + "px; dialogWidth: " + iWidth + "px; Center:yes;Scroll:no;status:yes;resizeable:no"
		var ModalWin = window.showModalDialog(url,null,sOpt);
	}
	
	function ShowPopUp(url, iHeight, iWidth)
	{	
		var sOpt ="height=" + iHeight + ",width=" + iWidth + ",status=no,toolbar=no,menubar=no,location=no,scrollbars=no;"
		var PopUpWin = window.open(url,"NewsletterPopUp",sOpt);
		PopUpWin.focus();
	}


