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();
	}
}


function openFindIA(url) {
	var controls = "menubar=yes,toolbar=yes,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=yes,height=490,width=490";
	popup = window.open(url,'',controls);  //always opens new window
	if (navigator.appVersion.substring(0,1) != '2')
		popup.focus();
}


function openGateway(url) {
 var controls = "menubar=yes,toolbar=yes,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=yes,height=550,width=717";
 popup = window.open(url,'demo',controls);
 if (navigator.appVersion.substring(0,1) != '2')
  popup.focus();
}