function vbdiPopup(myUrl,myWidth,myHeight) 
{
	vbdiPopupExt(myUrl,myWidth,myHeight,'yes');
}

function vbdiPopupExt(myUrl,myWidth,myHeight, scrollbars) 
{
	if (navigator.userAgent.indexOf("MSIE") && (navigator.appVersion.substring(0,1) == '2')) {
		popup = window.open(myUrl,'thenewWin','top=50,left=50,toolbar=no,location=no,directories=no,status=no,resizable=yes,copyhistory=no,width=' + myWidth + ',height=' + myHeight + ',scrollbars=' + scrollbars);
	} else {
		popup = window.open(myUrl,'thenewWin','top=50,left=50,toolbar=no,location=no,directories=no,status=no,resizable=yes,copyhistory=no,width=' + myWidth + ',height=' + myHeight + ',scrollbars=' + scrollbars);
		popup.focus();
	}
}