function openWin(url) 
{
 	popupWin = window.open(url, null, 'width=500,height=200');
 	if (window.focus)
 	{
 		popupWin.focus();
 	}
}
function enteredIBDName(tbIBD, btnAction)
{
    if ( !tbIBD || !btnAction )
    {
    	return;
    }
	btnAction.disabled = (tbIBD.value.trim().length == 0);
}
String.prototype.trim = function() 
{
 
 
  var sSrc = this;
  sSrc = sSrc.replace(/^\s*(.*)/, "$1");
  sSrc = sSrc.replace(/(.*?)\s*$/, "$1");
  return sSrc;
}