var name='';
var openURL='';
function launchFullChrome(openurl, name) {
	<!-- mac -->
if (navigator.appVersion.indexOf('Mac') >= 1){
	  var screenWidth;
	  var bName = navigator.appName;
	screenWidth = screen.width;
	if (bName == "Microsoft Internet Explorer"){
		if (screenWidth > 800) {
		 var h = 716;
  		var w = 1014;}
  		else {
		 var h = 525;
  		var w = 675;	
		}
	}
	else {
		if (screenWidth > 800) {
		 var h = 716;
  		var w = 1014;}
  		else {
		 var h = 525;
  		var w = 675;	
		}
	}
  BigWindow=window.open(openurl, name,'toolbar=no,status=no,scrollbars=no,location=no,menubar=no,directories=no,width=' + w + ',height=' + h);
  BigWindow.moveTo(0, 0);
BigWindow.focus();
<!-- PC -->
}else{
 var h = screen.availHeight - 28;
  var w = screen.availWidth - 10;
  BigWindow=window.open(openurl, name,'scrollbars=no,width=' + w + ',height=' + h);
  BigWindow.moveTo(0, 0);
BigWindow.focus();}

}	

//This is for the loaded state of the index page... Put here as an additional check for those who might have bookmarked the site when it looks like /index.cfm?mode=loader

var MM_FlashControlInstalled;	// is the Flash ActiveX control installed?
var MM_FlashControlVersion;	// ActiveX control version if installed

function MM_FlashInfo()
{
    if (navigator.plugins && navigator.plugins.length > 0)
    {
	this.implementation = "Plug-in";
	this.autoInstallable = false;	// until Netscape SmartUpdate supported

	// Check whether the plug-in is installed:

	if (navigator.plugins["Shockwave Flash"])
	{
	    this.installed = true;

	    // Get the plug-in version and revision:

	    var words =
		navigator.plugins["Shockwave Flash"].description.split(" ");

	    for (var i = 0; i < words.length; ++i)
	    {
		if (isNaN(parseInt(words[i])))
		continue;

		this.version = words[i];
		

		this.revision = parseInt(words[i + 1].substring(1));
	    }
	}
	else
	{
	    this.installed = false;
	}
    }
    else if (MM_FlashControlInstalled != null)
    {
	this.implementation = "ActiveX control";
	this.installed = MM_FlashControlInstalled;
	this.version = MM_FlashControlVersion;
	this.autoInstallable = true;
    }
    
    this.canPlay = MM_FlashCanPlay;
}


/*
 * MM_FlashCanPlay() -- check whether installed Flash Player can play content
 *
 * Synopsis:
 *
 *	MM_FlashCanPlay(contentVersion, requireLatestRevision)
 *
 *	Arguments:
 *
 *	    contentVersion		version of Flash software used to
 *					author content
 *
 *	    requireLatestRevision	Boolean indicating whether latest
 *					revision of plug-in should be required
 *
 *	Returns:
 *
 *	    true if the installed player can play the indicated content;
 *	    false otherwise.
 *
 * Description:
 *
 *	This function is not intended to be called directly, only
 *	as an instance method of MM_FlashInfo.
 */
 
 
function MM_FlashCanPlay(contentVersion, requireLatestRevision)
{
    var canPlay;

    if (this.version)
    {
	canPlay = (parseInt(contentVersion) <= this.version);

	if (requireLatestRevision)
	{
	    if (this.revision &&
		this.revision < MM_FlashLatestPluginRevision(this.version))
	    {
		canPlay = false;
	    }
	}
    }
    else
    {
	canPlay = MM_FlashDetectedSelf();
    }

    return canPlay;
}


/*
 * MM_FlashDetectedSelf() -- recall whether Flash Player has detected itself
 *
 * Synopsis:
 *
 *	MM_FlashDetectedSelf()
 *
 *	Returns:
 *
 *	    true if a cookie signifying that Flash Player has detected itself
 *	    is set; false otherwise.
 *
 * Description:
 *
 *	This function is only meant to be called internally.
 */

function MM_FlashDetectedSelf()
{
    return (document.cookie.indexOf("MM_FlashDetectedSelf") != -1);
}

