function getUrlVars()
{
    var vars = [], hash;
    var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
 
    for(var i = 0; i < hashes.length; i++)
    {
        hash = hashes[i].split('=');
        vars.push(hash[0]);
        vars[hash[0]] = hash[1];
    }
 
    return vars;
}

window.addEvent('domready',function() { 

	if ($('embedvid')!=null) {

		var urlvars = getUrlVars();

		if (urlvars['youtube']) {
			ytfile = urlvars['youtube'];
			yturl = 'http://www.youtube.com/v/' + ytfile + '&hl=nl_NL&fs=1&rel=0&autoplay=1';

			var ytcode = '<object width="425" height="344"><param name="movie" value="' + yturl + '"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="' + yturl + '" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>';
			$('embedvid').getElements('p').set('html',ytcode);
			$('embedvid').setStyle('display','block');
		}

		if (urlvars['vimeo']) {
			vimfile = urlvars['vimeo'];
			vimurl = 'http://vimeo.com/moogaloop.swf?clip_id=' + vimfile + '&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1';

			var vimcode = '<object width="425" height="239"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="' + vimurl + '" /><embed src="' + vimurl + '" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="425" height="239"></embed></object>';

			$('embedvid').getElements('p').set('html',vimcode);
			$('embedvid').setStyle('display','block');
		}

		if (urlvars['slideshare']) {
			slidefile = urlvars['slideshare'];
			slidetitle = urlvars['slidetitle'];
			slideurl = 'http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=' + slidefile + '&amp;rel=0&amp;stripped_title=' + slidetitle;

			var slidecode = '<object width="425" height="355"><param name="movie" value="' + slideurl + '" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="' + slideurl + '" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>';

			$('embedvid').getElements('p').set('html',slidecode);
			$('embedvid').setStyle('display','block');
		}
	}
});