// Fill  top frame and bottom frame by requested documents
  function FillFrames(TopFrDoc, BottomFrDoc)
  {
	var TopWin = window.top;
	var TopFrame = TopWin.frames["ifr_top"];
	var BottomFrame = TopWin.frames["ifr_bottom"];
    TopFrame.location.href = TopFrDoc;
  	BottomFrame.location.href = BottomFrDoc;
  }

// Get random URL from the set of URLs
  function GetRndURL()
  {
	var URLCount = 1;
	var URLs = new Array(URLCount);
	URLs[0] = "press_content.htm";
    var RandomURL = Math.round(Math.random()*(URLCount-1)); 
    return URLs[RandomURL];
  }
  
  function SnapShow(URL,Target) {
  if (URL != null) {
    win = window.open(URL,Target,'resizable=no,scrollbars=yes,toolbars=no,statusbar=no,width=440,height=500,top=40,left=20');
    win.focus();
  }
}