﻿// JScript File
Initialize();

   
    
function Initialize()
{
   try
   {
       var url;
       var _frameHeight,_frameWidth;
       
       if (navigator.appName.indexOf("Microsoft") == -1)
       {
          _frameHeight = 420;
       }
       else
       {
         _frameHeight = 425;
       }
       
       _frameWidth = 312;
       
       
        url = ""+sitePath+"/Channels/ChannelEmbed.aspx?channelName="+channelName+"&Username="+Username+"&ImageType="+ImageType+"";
        document.write("<iframe src='" + url + "' scrolling='no' allowTransparency='true' style='width:"+_frameWidth+"px;height:"+_frameHeight+"px;border-width:0px; border-color:#cccccc' frameborder=0;></iframe>");  
   }
   catch(ex)
   {
     //alert(ex);
     //alert(ex.description);
   }
}


