// JavaScript Document

// Copy and paste the youtube URL to the var "videolink" and extract just the lettering. i.e.
// http://www.youtube.com/watch?v=R7yfISlGLNU ----> R7yfISlGLNU
//
// NOTE: Be careful to not leave extra spaces.
//
// If not a YouTube video:
//	place // before previous video
//	copy/paste into document.writeln("");
//	replace "s with 's
//	and set width to width='300'


var videolink='SItFvB0Upb8';


document.writeln("<object width='300'><param name='movie' value='http://www.youtube.com/v/"+videolink+"&hl=en&fs=1&rel=0'></param><param name='allowFullScreen' value='true'></param><param name='allowscriptaccess' value='always'></param><embed src='http://www.youtube.com/v/"+videolink+"&hl=en&fs=1&rel=0' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='300'></embed></object>");