﻿//[pg-20090302:start] Load the Promotion Flash Banners
$(document).ready(function(){
    LoadFlashFile($("#hidfilepath").val());
});

function LoadFlashFile(filepath){
   if( filepath != '' ){
        var so = new SWFObject("../Flash/promotion.swf", "sotester", "480", "284", "9", "#FFFFFF");
        so.addParam ("wmode", "transparent");
        so.addParam ("allowScriptAccess", "always");
        so.addVariable ("fv_feed", filepath);
        so.write("featured_products");		
    }
}
//[pg-20090302:end] Load the Promotion Flash Banners	   
