function setplayer(yurl) {

var vid = (yurl.substr(31,11));
var strhtm ='';  
strhtm = strhtm + "<p><object width='560' height='340'><param name='movie' ";
strhtm = strhtm + " value='http://www.youtube.com/v/" + vid + "&hl=en&fs=1&rel=0&color1=0xe1600f&color2=0xfebd01&autoplay=1'></param><param name='allowFullScreen' ";
strhtm = strhtm + "value='true'></param><param name='allowscriptaccess' value='always'></param> ";
strhtm = strhtm + "<embed src='http://www.youtube.com/v/" + vid + "&hl=en&fs=1&rel=0&color1=0xe1600f&color2=0xfebd01&autoplay=1' type='application/x-shockwave-flash' allowscriptaccess='always' "; 
strhtm = strhtm + "allowfullscreen='true' width='560' height='340'></embed></object></p>";

document.getElementById('ytbig').innerHTML = strhtm; 

}

function activeVid() {

	var allElems = document.getElementsByTagName('div');
	for (var i = 0; i < allElems.length; i++) {
		var thisElem = allElems[i];
		if (thisElem.className && thisElem.className == 'videobox') {
			thisElem.className = 'videobox active';
		}
	}

}
