// Ruhani Rabin - 2007, 2009
// Please keep this header if you intend 
// to use this script
// http://www.ruhanirabin.com
// ---------------------------

// JavaScript Document
function WriteLayer(ID,parentID,sText) {
 if (document.layers) {
   var oLayer;
   if(parentID){
     oLayer = eval('document.' + parentID + '.document.' + ID + '.document');
   }else{
     oLayer = document.layers[ID].document;
   }
   oLayer.open();
   oLayer.write("<embed src='http://www.youtube.com/v/" + sText + "&autoplay=1&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='300' height='250'></embed>");
   oLayer.close();
 }
 else if (parseInt(navigator.appVersion)>=5&&navigator.
appName=="Netscape") {
   document.getElementById(ID).innerHTML = "<embed src='http://www.youtube.com/v/" + sText + "&autoplay=1&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='300' height='250'></embed>";
 }
 else if (document.all) document.all[ID].innerHTML = "<embed src='http://www.youtube.com/v/" + sText + "&autoplay=1&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='300' height='250'></embed>"
}