function showProgress(fBarRef)
	{
	if (window.showModalDialog)
		{
		window.showModelessDialog(fBarRef,null,'dialogWidth=375px; dialogHeight:150px; center:yes');
		}
	else
		{
		window.open(fBarRef,'','width=375,height=150,status=no', true);
		}
	}
function newWindow(url,fHeight,fWidth)
	{
	var tWidth = 600;
	var tHeight = 500;

	if ( fWidth != '' )
		{
		tWidth = fWidth;
		}
	if ( fHeight != '' )
		{
		tHeight = fHeight;
		}
	eval("window.open(url,'windowName','height="+tHeight+",width="+tWidth+",scrollbars=yes')");
	}
function testLink(formName)
	{
	linkVal = eval('document.'+formName+'.linkURL.value');
	if ( linkVal.length < 5 )
		{
		return;
		}
	else
		{
		if ( linkVal.indexOf('http://') == -1 & linkVal.indexOf('ftp://') == -1 )
			{
			linkVal = 'http://' + linkVal
			}
		//window.alert (linkVal + '\n' + linkVal.length + "\n" + linkVal.indexOf('http://'))
		window.open(linkVal);
		}
	}
function checkCookie()
	{
	if (document.cookie == "") 
		{
		alert("You must Enable Cookies in your browser in order to login to your Bizingo Account.");
		}
	}
function copyTextAreaContents(textAreaName,formName)
	{
	eval('document.' + formName + '.' + textAreaName + '.focus()');
	eval('document.' + formName + '.' + textAreaName + '.select()');
    var ua = navigator.appName;
    var isMSIE = (ua == "Microsoft Internet Explorer");
    if (isMSIE)
    	{
		eval('Copied = ' + formName + '.' + textAreaName + '.createTextRange()');
		Copied.execCommand("Copy");
		}
	else
		{
		alert('This Feature Requires Internet Explorer.\nRight Click on the TextArea and Select Copy.');
		}
	}