// JavaScript Document
function playVideo_0(id, height, width, location) {
	switch (location) {
		default:
			document.getElementById('mainvideo').innerHTML = ' \
					<object width="' + width +'" height="' + height + '"> \
						<param name="movie" value="http://www.youtube.com/v/' + id + '&rel=0&autoplay=1" /> \
						<param name="wmode" value="transparent"></param> \
						<embed src="http://www.youtube.com/v/' + id + '&rel=0&autoplay=1" type="application/x-shockwave-flash" wmode="transparent" width="' + width + 'px" height="' + height + 'px" /> \
					</object> \
			';
	}
}

function playVideo(id, height, width, location) {
	switch (location) {
		default:
			document.getElementById('mainvideo').innerHTML = '<embed src="http://www.youtube.com/v/' + id + '&rel=0&autoplay=1" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + 'px" height="' + height + 'px" wmode="transparent"></embed>';
	}
}


 function showaVideo(id, height, width, location){
      if( document.getElementById('video').style.display==''){
   			document.getElementById('video').style.display='none';
       }else{
  			 document.getElementById('video').style.display='';
         }
		switch (location) {
		default:
			document.getElementById('mainvideo').innerHTML = '<embed src="http://www.youtube.com/v/' + id + '&rel=0&autoplay=1" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + 'px" height="' + height + 'px" wmode="transparent"></embed>';
	} 
}
