function SecureAlert()
{
    alert("You are leaving the Kilkenny Cereals web site. Please confirm your security settings.");
}



function OpenImageWindow(to_link, winWidth, winHeight)
{
  var LeftPosition = (winWidth) ? (winWidth) : 0;
  var TopPosition  = (winHeight) ? (winHeight): 0;  
  var NewWinWidth  = LeftPosition;
  var NewWinHeight = TopPosition;

  NewWinWidth = (NewWinWidth > screen.availWidth - 100) ? screen.availWidth - 100: NewWinWidth;
  NewWinHeight = (NewWinHeight > screen.availHeight - 100) ? screen.availHeight - 100: NewWinHeight;

  var settings = 'menubar=no,scrollbars=no,resizable,height=' + NewWinHeight + ',width=' + NewWinWidth;
  
  hWin = window.open(to_link, "ImagePopup", settings, false);
  hWin.focus();
  if (hWin.opener == null) hWin.opener = self;
}



function jsopen_win(to_link, winWidth, winHeight)
{ 
  var the_url          = (to_link) ? (to_link) : "video.htm";
  var the_toolbar      = "no";
  var the_addressbar   = "no";
  var the_directories  = "no";
  var the_statusbar    = "no";
  var the_menubar      = "no";
  var the_scrollbars   = "no";
  var the_do_resize    = "no";
  var the_x            =  (winWidth)  ? (winWidth)  : 340;
  var the_y            =  (winHeight) ? (winHeight) : 260;
  var the_copy_history = "no";
  var left_pos         =  (screen.availWidth/2) - (the_x/2);
  var top_pos          =  (screen.availHeight/2) - (the_y/2);

  var option           = "";

  if (window.outerWidth)
  {
    option = " toolbar="     + the_toolbar
           + ",location="    + the_addressbar 
           + ",directories=" + the_directories
           + ",status="      + the_statusbar
           + ",menubar="     + the_menubar
           + ",scrollbars="  + the_scrollbars
           + ",resizable="   + the_do_resize
           + ",outerWidth="  + the_x
           + ",outerHeight=" + the_y
           + ",copyhistory=" + the_copy_history
           + ",left="        + left_pos
           + ",top="         + top_pos;

    site=open(the_url, "DisplayWindow", option);

    if(navigator.userAgent.indexOf('Opera') != -1)
    {
      site.resizeTo(the_x,the_y);
      site.moveTo(0,0);
    }
  }

  else

  {

    option = " toolbar="     + the_toolbar
           + ",location="    + the_addressbar
           + ",directories=" + the_directories
           + ",status="      + the_statusbar
           + ",menubar="     + the_menubar
           + ",scrollbars="  + the_scrollbars
           + ",resizable="   + the_do_resize
           + ",Width="       + the_x
           + ",Height="      + the_y
           + ",copyhistory=" + the_copy_history
           + ",left="        + left_pos
           + ",top="         + top_pos;

    site=open('', "DisplayWindow", option);
    site.location=the_url;

    if(site.open)
    {
      site.focus();
      return false;
    }
 
    site.resizeTo(the_x,the_y);

  }

}

