var args = new Object(); var query = location.search.substring(1); // Get query string var pairs = query.split( "," ); // Break at comma for ( var i = 0; i < pairs.length; i++ ) { var pos = pairs[i].indexOf('='); if( pos == -1 ) { continue; // Look for "name=value" } var argname = pairs[i].substring( 0, pos ); // If not found, skip var value = pairs[i].substring( pos + 1 ); // Extract the name args[argname] = unescape( value ); // Extract the value } function OnLoad() { vid = document.getElementById( "video1" ); addEvent( vid, "click", divClickHandler ); } var toc1 = null; var toc2 = null; var vid = null; //adds and event listener across major browser versions function addEvent( obj, type, fn ) { if ( obj.addEventListener ) { obj.addEventListener( type, fn, true ); } else if ( obj.attachEvent ) { obj.attachEvent( "on" + type, fn ); } else { obj["on" + type] = fn; } } //removes event listeners across major browser versions function removeEvent( obj, type, fn ) { if ( obj.removeEventListener ) { obj.removeEventListener( type, fn, true ); } else if ( obj.detachEvent ) { obj.detachEvent( "on" + type, fn ); } else { delete obj["on" + type]; } } function divClickHandler() { var req = swfobject.hasFlashPlayerVersion("9.0.115"); var id = "video1"; var bookmark = args.movie ? args.movie : 0; var node = '
' + '

The Camtasia Studio video content presented here

requires JavaScript to be enabled and the latest version

of the Adobe Flash Player. If you are you using

a browser with JavaScript disabled please enable it now.

Otherwise, please update your version of the

free Flash Player by downloading here.

' + '
'; if ( req ) { swfobject.embedSWF( "paul-ponna-webinar_controller.swf", id, "1024", "630", "9.0.115", null, { csConfigFile: "paul-ponna-webinar_config.xml", csColor: "FFFFFF", csPreloader: "paul-ponna-webinar_preload.swf", csFilesetBookmark: bookmark }, { bgcolor: "FFFFFF", quality: "best", allowscriptaccess: "always" } ); } else { var n = (typeof id == 'string') ? document.getElementById( id ) : id; n.innerHTML = node; }; removeEvent( vid, 'click', divClickHandler ); }