﻿function displayActorBox(version, width, height)
{
    //Set Width
    if (width == null)
    {
        width = "770";
    }
    else
    {
        width = width;
    }
    
    //Set Height
    if (height == null)
    {
        height = "380";
    }
    else
    {
        height = height;
    }
    
    //Version One of the Actorbox 
    //Black background swf file
    var actorboxv1 = "<iframe src=\"http://swfhd.com/ActorBox/v1/thumbs.swf\" style=\"width:" + width + "px; height: " + height + "px; border:none;\" frameborder=\"0\" scrolling=\"no\"></iframe>";
    
    var actorboxInsurance = "<iframe src=\"http://swfhd.com/ActorBox/insurance/thumbs.swf\" style=\"width:" + width + "px; height: " + height + "px; border:none;\" frameborder=\"0\" scrolling=\"no\"></iframe>";
    
    
    if (version == 1)
    {
        
        //Write it on the page
        document.write(actorboxv1);
    }
    
    else if (version == 101)
    {
        //Write it on the page
        document.write(actorboxInsurance);
    }
    
    
    else
    {
        //Default will be to display version 1
        //Write it on the page
        document.write(actorboxv1);
    }
}
