function loadVideo(source,width,height) {
    height += 17;
    var player = new SWFObject("NonverBlaster.swf", "flashvideo", width, height, "9", "#000"); //size
    player.addParam("scale", "noscale");
    player.addParam("allowFullScreen", "true");
    //
    // source
    player.addVariable("videoSource", source);
    //
    // colors
    player.addVariable("normColor", "ffffff");
    player.addVariable("loaderColor", "dadada");
    player.addVariable("specialColor", "FFDB00");
    player.addVariable("backGroundColor", "000000");
    player.addVariable("fullSrceenSpecialColor", "ffffff");
    player.addVariable("centerVideo", 'false');
    //
    // other variables
    player.addVariable("autoplay", "true");
    player.addVariable("allowSmoothing", "true");
    //
    player.write("videoframe");
    //
    // resize
    //$('content').style.width = width+"px";
    //$('video').style.height = height+"px";
}
