// Stricker - 10/09/2002 - initial creation

function PopUp (Href, Width, Height)
{
  window.open (Href, "_blank" ,"width=" + Width + ",height=" + Height + ",resizable,");
}

function PopUpImage (ImageTitle, ImagePath, Width, Height, Scrollbars)
{
  var Scrollable;
  
  if (Scrollbars != null)
  {
    Scrollable = 1
  }
  else
  {
    Scrollable = 0
  }
  
  window.open ('http://www.bigheadcrew.com/include/gallery.asp?Image=' + ImagePath + '&Title=' + ImageTitle, "_blank" ,"width=" + Width + ",height=" + Height + ",resizable,scrollbars=" + Scrollable);
}

function Preload_BigHeadGames ()
{ 
  var images = new Array ('./images/buttons/home_on.gif',
                          './images/buttons/news_on.gif',
                          './images/buttons/technology_on.gif',
                          './images/buttons/projects_on.gif',
                          './images/buttons/3d_models_on.gif',
                          './images/buttons/old_work_on.gif',
                          './images/buttons/concepts_on.gif',
                          './images/buttons/the_team_on.gif');
                          
  PreloadImages (images);
}

function PreloadImages (image_array) 
{
  for (index = 0; index < image_array.length; index++)
  {
    var an_image = new Image ();
    an_image.src = image_array [index];
  }
}

function Preload_Kenjutsu ()
{ 
}
