/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function openYTWindow(ytcode){
    win = new Window({className: "magento", width: 700, height: 400, destroyOnClose: true, recenterAuto:true, resizable: false, draggable: false});
    win.getContent().update('<div style="position: relative; display: block; margin: 5px; text-align: center;"><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/'+ytcode+'?fs=1&amp;hl=es_ES&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/'+ytcode+'?fs=1&amp;hl=es_ES&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></div>');
    win.showCenter(true);
    win.setZIndex(10000);
}

