function launchWindow(url,name,w,h,options) {//v2.1
	if(options == null){options = 0};//In case options isn't passed set it to 0;
	if (document.all) {
		screenw = screen.width;
		screenh = screen.height;
		//Center the popup
		var leftPos = (screenw-w)/2;
		var topPos = (screenh-h)/2;
		
	} else {//Stupid netscape doesn't support this properly so they get top left instead
		var leftPos = 0;
		var topPos = 0;
	}
	
	if (options == 0){//Write a window with no options
		window.open(url,name,'width='+w+',height='+h+',resizable=no,scrollbars=no,toolbar=no,location=no,status=no,top=' + topPos + ',left=' + leftPos);
	} else if (options == 1) {//Write a window with options
		window.open(url,name,'width='+w+',height='+h+',resizable=yes,scrollbars=yes,toolbar=yes,location=yes,status=yes,top=' + topPos + ',left=' + leftPos);
	}

}

// Quicktime detect steps
function secondStep()	{
     if (navigator.plugins) {
          for (i=0; i < navigator.plugins.length; i++ ) {
               if (navigator.plugins[i].name.indexOf("QuickTime") >= 0)
                    { haveqt = true; }
            }
        }
	}


function thirdStep()	{

	if (haveqt) {
    	document.write('<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="320"HEIGHT="256" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab"> <PARAM name="SRC" VALUE="http://assets.mindcomet.net/mindcomet/mov/' + georgew + '.mov"> <PARAM name="AUTOPLAY" VALUE="true"> <PARAM name="CONTROLLER" VALUE="true"><embed src="http://assets.mindcomet.net/mindcomet/mov/' + georgew + '.mov" width=320 height=256 autoplay="true"></object>');
    }
    else
    {
    	document.write('You do not seem to have ' +
    '<a href="http://www.apple.com/quicktime">QuickTime</a>.');
    }

	}