//----- Start of data area...
//----- 07-03-05, packdurls.js, this is the data "interface"

//----- The "projection screen" size
var myWidth  = 200;
var myHeight = 200;

//----- Some image directories, possible hot links
// var myPath   = "file://C:/ka1fsb/";
var myPath = "http://ka1fsb.home.att.net/";

//----- To add more, clone a line and edit with new data...
//----- NOTE: Each line ends in a comma, the record separator.
var myData = "";

myData  = myData + myPath + "vhfbeam.jpg,";
myData  = myData + myPath + "station.jpg,";
myData  = myData + myPath + "jfet.jpg,";
myData  = myData + myPath + "1305mdm.jpg,";
myData  = myData + myPath + "ar270.jpg,";
myData  = myData + myPath + "oscope.jpg,";
myData  = myData + myPath + "antsym.jpg,";
myData  = myData + myPath + "penguin.gif,";

//----- Remove the last record separator... housekeeping...
myData = myData.substr(0, (myData.length - 1) );

//----- Save the dimensions of each image, width by height...
//----- These are the actual dims, but they could be "edited" too,
//----- as long as the aspect ratio is preserved.
//----- The colon (:) is the field separator
var myDimns = "";

myDimns  = myDimns + "251:168,"; 
myDimns  = myDimns + "251:176,";
myDimns  = myDimns + "81:81,";
myDimns  = myDimns + "200:201,";
myDimns  = myDimns + "265:223,";
myDimns  = myDimns + "399:206,";
myDimns  = myDimns + "72:72,";
myDimns  = myDimns + "90:76,";

myDimns = myDimns.substr(0, (myDimns.length - 1) );

//----- The matches... may have "embeded" URLs too
//----- The "answers" must be in parallel with above data string.
//----- These can include URLs...
var myDesc = "";

myDesc = myDesc + '<a href="'+myPath+'/atticant.html">VHF Beam</a>,';
myDesc = myDesc + '<a href="'+myPath+'/setup.html">The Station</a>,';
myDesc = myDesc + "Jfet Symbol,";
myDesc = myDesc + '<a href="'+myPath+'/thrumdm.html">Thru Modem</a>,';
myDesc = myDesc + '<a href="'+myPath+'/packant.html">VHF GP Ant</a>,';
myDesc = myDesc + '<a href="'+myPath+'/homebrew.html">Oscilloscope</a>,';
myDesc = myDesc + "Aerial Symbol,";
myDesc = myDesc + "Linux Logo,";

myDesc = myDesc.substr(0, (myDesc.length - 1) );

//----- End of data area...
