//
// Functions for opening a pop-up window 
// for displaying post and packing info
//

var remote;

// PopUp some simple text
//
// <a href="javascript:popUpText('some text to display')" title="Alternative text here">
//
function popUpText(text) 
{
  if (remote) remote.close();
  
  remote=open('', '', 'width=280,height=200,resizable=1,scrollbars=1');
  remote.document.open('text/html')
  
  remote.document.write('<title></title>');
  remote.document.write('<body bgcolor="#ffffff" text="#000000" onLoad="if (window.focus) window.focus()">');
  remote.document.write('<p><font face="verdana,arial" size="2">');
  remote.document.write( text );
  remote.document.write('</font></p></body>');
  
  remote.focus();
}





