//------------------------------------------------------------------------------
//      File:  nfh_combobox.js
//   Written:  04-26-2005
//   Revised:  07-16-2005
//
//   Purpose:  contains the data struct and data for main_unsafe.php
//
//     Notes:  Never ever change a pix label since other htm pages 
//             may be linking to it.
//-- ---------------------------------------------------------------------------


function nfh_data(nfh_desc, nfh_link)
{
   this.nfh_desc = nfh_desc;   
   this.nfh_link = nfh_link;    
};

var nfh_array = new Array();
var array_indx = 0;

//--------------------------------------

nfh_array[array_indx++] = new nfh_data(
   "The Neighbors From Hell",  
   "http://www.theneighborsfromhell.com/");

nfh_array[array_indx++] = new nfh_data(
   "CNNMoney Neighbors From Hell", 
   "http://money.cnn.com/2005/03/30/pf/neighborsfromhell/index.htm/popup");

nfh_array[array_indx++] = new nfh_data(
   "Neighbors From Hell",  
   "http://www.neighborsfromhell.com/intro.html");

nfh_array[array_indx++] = new nfh_data(
   "RichardsFault: Sounds of the Cul-De-Sac", 
   "http://www.richardsfault.com/sounds%20of%20the%20cul-de-sac/");

nfh_array[array_indx++] = new nfh_data(
   "Neighbor From Hell",  
   "http://neighborfromhell.com/index.html");

nfh_array[array_indx++] = new nfh_data(
   "Neighbor From Hell in Australia", 
   "http://www.geocities.com/quietaus/nfh.html");

nfh_array[array_indx++] = new nfh_data(
   "Neighbors...",
   "http://www.fotomuse.org/library/neighbors.html");

nfh_array[array_indx++] = new nfh_data(
   "Why I Hate My Neighbor", 
   "http://stupidneighbour.blogspot.com/");

nfh_array[array_indx++] = new nfh_data(
   "Rude Neighbor", 
   "http://www.rudeneighbor.com/");

nfh_array[array_indx++] = new nfh_data(
   "Annoying Neighbors", 
   "http://www.annoyingneighbors.com/");

nfh_array[array_indx++] = new nfh_data(
   "Redneck Neighbor", 
   "http://www.joespc.com/carlos/redneck.htm");

nfh_array[array_indx++] = new nfh_data(
   "Top 10 Neighbors From Hell", 
   "http://www.annoyingneighbors.com/");

nfh_array[array_indx++] = new nfh_data(
   "Neighbours From Hell in Britain", 
   "http://www.nfh.org.uk/");

nfh_array[array_indx++] = new nfh_data(
   "Nixing Neighborhood Nastiness",
   "http://surf.atlantic.net/features/neighbors.htm");

nfh_array[array_indx++] = new nfh_data(
   "NEWS4 Investigates: Bad Neighbors",
   "http://news4colorado.com/investigates/local_story_315143013.html");

nfh_array[array_indx++] = new nfh_data(
   "When Neighbors Go Bad",
   "http://archive.parade.com/2004/0711/0711_neighbors.html");

nfh_array[array_indx++] = new nfh_data(
   "Plea For a Little Human Respect",
   "http://www.noisefree.org/soundoffplea.html");

nfh_array[array_indx++] = new nfh_data(
   "The York Stage - Let the Show Commence...",
   "http://homepage.ntlworld.com/thornyside/mainindex.html");

function nfh_combobox()
{

document.write("<FORM NAME='nfh_take'>");
document.write("<TABLE class=text_box BGCOLOR=lightsteelblue BORDER=0 CELLSPACING=10 CELLPADDING=0>");

document.write("<TR><TD ALIGN=CENTER><B>More Neighbor From Hell Websites</B></TD></TR>");

document.write("<TR><TD WIDTH=100%><SELECT NAME='nfh_take2' SIZE=5 STYLE='width:300px'>");


for(indx=0 ; indx < nfh_array.length ; ++indx)
{
   document.write("<option value='" + nfh_array[indx].nfh_link + "'>" + nfh_array[indx].nfh_desc + "</option>");
}


document.write("</SELECT>");
document.write("</TD></TR>");

// open link in a new window...  gkerber 04-27-2005
document.write("<TR><TD WIDTH='100%' ALIGN=CENTER><p><INPUT TYPE='button' VALUE='Go' NAME='B1' onClick='window.open(\"\").location=document.nfh_take.nfh_take2.options[document.nfh_take.nfh_take2.selectedIndex].value'></TD></TR>");
document.write("</TABLE>");
document.write("</FORM>");

return;
}

