<!-- common.js -->

function toggle(img_name,state) {
 if (document.images) {
   document.images[img_name].src = eval(img_name + "_" + state + ".src"); 
 }
}

function toggleButton(button, state) {
 button.className =  state ? "button_hover" : "button";
}

function toggleMenu(state) {
 if (state) {
  event.srcElement.className="menu_on";
 } else {
  event.srcElement.className="menu_off";
 }
}

function randomNumberGenerator(max) {
 random_number = Math.round(Math.random() * max)
}

function popZoom(image_name) {
 window.open("images/products/" + image_name,"RealEstateSpecialists","height=500,width=500,status=no,toolbar=no,menubar=no,location=no")
}

function popWindow(url) {
 window.open(url,"RealEstateSpecialists","height=500,width=800,status=yes,toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes")
}

function submitForm(form) {
 document.forms[0].action = form;
 document.forms[0].submit();
}

function toggleDiv(strDivName,iState) { // 1 visible, 0 hidden
 if (document.layers) { //NN4+
//  document.layers[strDivName].visibility = iState ? "show" : "hide";
  document.layers[strDivName].display = iState ? "inline" : "none";
 } else if (document.getElementById) { //gecko(NN6) + IE 5+
//  document.getElementById(strDivName).style.visibility = iState ? "visible" : "hidden";
  document.getElementById(strDivName).style.display = iState ? "inline" : "none";
 } else if (document.all) { // IE 4
//  document.all[strDivName].style.visibility = iState ? "visible" : "hidden";
  document.all[strDivName].style.display = iState ? "inline" : "none";
 }
}

function toggleElement(strElement) {
 var el = document.getElementById(strElement);
 el.style.display = (el.style.display != 'none' ? 'none' : '' );
}

function highlightField(obj) {
 if (!obj) {
  return false;
 }
 if (obj.type != "button") {
  obj.style.backgroundColor = "#e9e6d6";
 }
 return true;
}

function unhighlightField(obj) {
 if (!obj) {
  return false;
 }
 if (obj.type != "button") {
  obj.style.backgroundColor = "";
 }
 return true;
}

function trim(sString)  {
 while (sString.substring(0,1) == ' ') {
  sString = sString.substring(1, sString.length);
 }
 while (sString.substring(sString.length-1, sString.length) == ' ') {
  sString = sString.substring(0,sString.length-1);
 }
 return sString;
}

function isEmail(str) {
 // are regular expressions supported?
 var supported = 0;
 if (window.RegExp) {
  var tempStr = "a";
  var tempReg = new RegExp(tempStr);
   if (tempReg.test(tempStr)) supported = 1;
 }
 if (!supported) 
  return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
 var r1 = new RegExp("(@.*@)|(\\.\\.)|(@\\.)|(^\\.)");
 var r2 = new RegExp("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$");
 return (!r1.test(str) && r2.test(str));
}

function formatCurrency(num,show_cents) {
 num = num.toString().replace(/\$|\,/g,'');
 if(isNaN(num)) { num = "0"; }
 sign = (num == (num = Math.abs(num)));
 num = Math.floor(num*100+0.50000000001);
 cents = num%100;
 num = Math.floor(num/100).toString();
 if(cents<10) { cents = "0" + cents; }
 for (var i=0; i<Math.floor((num.length-(1+i))/3); i++) {
  num = num.substring(0,num.length-(4*i+3))+','+num.substring(num.length-(4*i+3));
 }
 if (show_cents) {
  formatted_number = (((sign)?'':'-') + '$' + num + '.' + cents);
 } else {
  formatted_number = (((sign)?'':'-') + '$' + num);
 }
 return formatted_number;
}

function printPage(mls, type) {
 window.open("propertyprint" + type + ".asp?mls=" + mls,"LauProperties","height=700,width=700,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}

function addNotes(mls, property_type) {
 window.open("secured/addnotes.asp?mls=" + mls + "&type=" + property_type,"LauProperties","height=500,width=500,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}

function displayNotes(mls, property_type) {
 window.open("secured/propertynotes.asp?mls=" + mls + "&type=" + property_type,"LauProperties","height=500,width=500,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}

function mortgageCalculator(list_price) {
 window.open("mortgagecalcwin.asp?price=" + list_price,"LauProperties","height=500,width=500,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}

function displayPhoto(url) {
 window.open(url,"LauProperties","height=500,width=700,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}

function loadNeighborhoods(region) {
 options_length = document.forms[0].Neighborhood.options.length;
 for (i=0; i<options_length; i++) {
  document.forms[0].Neighborhood.options[0] = null;
 }

 index=0;
 for (i=1; i<neighborhoods[region].length ;i++) {
  new_option = new Option();
  new_option.text = neighborhoods[region][i];
  document.forms[0].Neighborhood.options[index] = new_option;
  index++
 }
}

function highlightRow(obj) {
 obj.style.backgroundColor="#e9e6d6";
}

function unhighlightRow(obj) {
 obj.style.backgroundColor="#ffffff";
}

var neighborhoods = new Array();
neighborhoods[1] = new Array();
neighborhoods[2] = new Array();
neighborhoods[3] = new Array();
neighborhoods[4] = new Array();
neighborhoods[5] = new Array();
neighborhoods[6] = new Array();
neighborhoods[7] = new Array();
neighborhoods[8] = new Array();
neighborhoods[9] = new Array();
neighborhoods[10] = new Array();
neighborhoods[11] = new Array();
neighborhoods[12] = new Array();

neighborhoods[1][0] = "Central Oahu"
neighborhoods[1][1] = "Mililani Area"
neighborhoods[1][2] = "Mililani Mauka"
neighborhoods[1][3] = "Wahiawa Area"
neighborhoods[1][4] = "Wahiawa Heights"
neighborhoods[1][5] = "Wahiawa Park"
neighborhoods[1][6] = "Whitmore Village"
neighborhoods[1][7] = "Wilikina"

neighborhoods[2][0] = "Diamond Head"
neighborhoods[2][1] = "Aina Haina Area"
neighborhoods[2][2] = "Aina Haina Beach"
neighborhoods[2][3] = "Black Point"
neighborhoods[2][4] = "Diamond Head"
neighborhoods[2][5] = "Hawaii Loa Ridge"
neighborhoods[2][6] = "Kahala Area"
neighborhoods[2][7] = "Kahala Kua"
neighborhoods[2][8] = "Kai Nani"
neighborhoods[2][9] = "Kaimuki"
neighborhoods[2][10] = "Kalani Iki"
neighborhoods[2][11] = "Kapahulu"
neighborhoods[2][12] = "Kuliouou"
neighborhoods[2][13] = "Maunalani Height"
neighborhoods[2][14] = "Niu Beach"
neighborhoods[2][15] = "Niu Valley"
neighborhoods[2][16] = "Paiko Lagoon"
neighborhoods[2][17] = "Palolo"
neighborhoods[2][18] = "Puupanini"
neighborhoods[2][19] = "St. Louis"
neighborhoods[2][20] = "Waialae G/C"
neighborhoods[2][21] = "Waialae Iki"
neighborhoods[2][22] = "Waialae Nui Ridge"
neighborhoods[2][23] = "Waialae Nui Valley"
neighborhoods[2][24] = "Waialae Nui-Lwr"
neighborhoods[2][25] = "Wailupe Area"
neighborhoods[2][26] = "Wailupe Bch"
neighborhoods[2][27] = "Wilhelmina"

neighborhoods[3][0] = "Ewa Plain/Kapolei"
neighborhoods[3][1] = "Campbell Ind Prk"
neighborhoods[3][2] = "Ewa"
neighborhoods[3][3] = "Ewa Beach"
neighborhoods[3][4] = "Ewa Gen"
neighborhoods[3][5] = "Ewa Gen Alii Court"
neighborhoods[3][6] = "Ewa Gen Alii Cove"
neighborhoods[3][7] = "Ewa Gen Breakers"
neighborhoods[3][8] = "Ewa Gen Carriages"
neighborhoods[3][9] = "Ewa Gen Cortebella"
neighborhoods[3][10] = "Ewa Gen Fiesta/Del Verde"
neighborhoods[3][11] = "Ewa Gen Kula Lei"
neighborhoods[3][12] = "Ewa Gen Las Brisas"
neighborhoods[3][13] = "Ewa Gen Lofts"
neighborhoods[3][14] = "Ewa Gen Lombard Way"
neighborhoods[3][15] = "Ewa Gen Meridian"
neighborhoods[3][16] = "Ewa Gen Prescott"
neighborhoods[3][17] = "Ewa Gen Breeze"
neighborhoods[3][18] = "Ewa Gen Soda Creek"
neighborhoods[3][19] = "Ewa Gen Sonoma"
neighborhoods[3][20] = "Ewa Gen Summerhill"
neighborhoods[3][21] = "Ewa Gen Sun Terra"
neighborhoods[3][22] = "Ewa Gen Sun Terra on the Park"
neighborhoods[3][23] = "Ewa Gen Sun Terra South"
neighborhoods[3][24] = "Ewa Gen Terrazza"
neighborhoods[3][25] = "Ewa Gen Tiburon"
neighborhoods[3][26] = "Ewa Gen Trovare"
neighborhoods[3][27] = "Ewa Gen Woodbridge"
neighborhoods[3][28] = "Ewa Villages"
neighborhoods[3][29] = "Ewa-Gentry"
neighborhoods[3][30] = "Huelani"
neighborhoods[3][31] = "Kapolei"
neighborhoods[3][32] = "Ko Olina"
neighborhoods[3][33] = "Leeward Estates"
neighborhoods[3][34] = "Ocean Pointe"
neighborhoods[3][35] = "Westloch Estates"
neighborhoods[3][36] = "Westloch Fairway"

neighborhoods[4][0] = "Hawaii Kai"
neighborhoods[4][1] = "Anchorage"
neighborhoods[4][2] = "Hahaione-Lower"
neighborhoods[4][3] = "Hahaione-Upper"
neighborhoods[4][4] = "Kalama Valley"
neighborhoods[4][5] = "Kamehame Ridge"
neighborhoods[4][6] = "Kamilo Nui"
neighborhoods[4][7] = "Kamiloiki"
neighborhoods[4][8] = "Kealaula Kai"
neighborhoods[4][9] = "Koko Head Terrac"
neighborhoods[4][10] = "Koko Kai"
neighborhoods[4][11] = "Koko Villas"
neighborhoods[4][12] = "Laulima"
neighborhoods[4][13] = "Luna Kai"
neighborhoods[4][14] = "Marina West"
neighborhoods[4][15] = "Mariners Cove"
neighborhoods[4][16] = "Mariners Ridge"
neighborhoods[4][17] = "Mariners Valley"
neighborhoods[4][18] = "Napali Haweo"
neighborhoods[4][19] = "Portlock"
neighborhoods[4][20] = "Queens Gate"
neighborhoods[4][21] = "Spinnaker Isle"
neighborhoods[4][22] = "Triangle"
neighborhoods[4][23] = "West Marina"

neighborhoods[5][0] = "Kailua"
neighborhoods[5][1] = "Aikahi Park"
neighborhoods[5][2] = "Beachside"
neighborhoods[5][3] = "Bluestone"
neighborhoods[5][4] = "Cntry Club Knoll"
neighborhoods[5][5] = "Coconut Grove"
neighborhoods[5][6] = "Enchanted Lake"
neighborhoods[5][7] = "Govt/Ag"
neighborhoods[5][8] = "Hillcrest"
neighborhoods[5][9] = "Kailua Bluffs"
neighborhoods[5][10] = "Kailua Estates"
neighborhoods[5][11] = "Kailua Town"
neighborhoods[5][12] = "Kaimalino"
neighborhoods[5][13] = "Kalaheo Hillside"
neighborhoods[5][14] = "Kalaheo Coconut Grove"
neighborhoods[5][15] = "Kalama Tract"
neighborhoods[5][16] = "Kalama/Cnut Grov"
neighborhoods[5][17] = "Kaopa"
neighborhoods[5][18] = "Kawailoa"
neighborhoods[5][19] = "Keolu Hills"
neighborhoods[5][20] = "Koolaupoku"
neighborhoods[5][21] = "Kukanono"
neighborhoods[5][22] = "Kukilakila"
neighborhoods[5][23] = "Kuulei Tract"
neighborhoods[5][24] = "Lanikai"
neighborhoods[5][25] = "Maunawili"
neighborhoods[5][26] = "Olomana"
neighborhoods[5][27] = "Pohakupu"
neighborhoods[5][28] = "Waimanalo"

neighborhoods[6][0] = "Kaneohe"
neighborhoods[6][1] = "Ahaolelo"
neighborhoods[6][2] = "Ahuimanu Area"
neighborhoods[6][3] = "Ahuimanu Hills"
neighborhoods[6][4] = "Ahuimanu Knolls"
neighborhoods[6][5] = "Alii Bluffs"
neighborhoods[6][6] = "Alii Shores"
neighborhoods[6][7] = "Bayview Estates"
neighborhoods[6][8] = "Bayview Garden"
neighborhoods[6][9] = "Bayview Tract"
neighborhoods[6][10] = "Castle Hill"
neighborhoods[6][11] = "Club View Estate"
neighborhoods[6][12] = "Country Club"
neighborhoods[6][13] = "Crown Terrace"
neighborhoods[6][14] = "Haiku Knolls"
neighborhoods[6][15] = "Haiku Park"
neighborhoods[6][16] = "Haiku Plantation"
neighborhoods[6][17] = "Haiku Village"
neighborhoods[6][18] = "Hakipuu"
neighborhoods[6][19] = "Hale Kou"
neighborhoods[6][20] = "Halekauwila"
neighborhoods[6][21] = "Halepuu"
neighborhoods[6][22] = "Hauula"
neighborhoods[6][23] = "Heeia Kea"
neighborhoods[6][24] = "Heeia View"
neighborhoods[6][25] = "Kaaawa"
neighborhoods[6][26] = "Kaalea"
neighborhoods[6][27] = "Kahaluu Town"
neighborhoods[6][28] = "Kahana"
neighborhoods[6][29] = "Kahanahou"
neighborhoods[6][30] = "Kahuhipa Industrial"
neighborhoods[6][31] = "Kam Hwy Makai"
neighborhoods[6][32] = "Kamooalii"
neighborhoods[6][33] = "Kaneohe Bay"
neighborhoods[6][34] = "Kaneohe Business"
neighborhoods[6][35] = "Kaneohe Heights"
neighborhoods[6][36] = "Kaneohe Town"
neighborhoods[6][37] = "Kaneohe Woods"
neighborhoods[6][38] = "Kapuna Hala"
neighborhoods[6][39] = "Keaahala"
neighborhoods[6][40] = "Keapuka"
neighborhoods[6][41] = "Kokokahi"
neighborhoods[6][42] = "Koualoa Area"
neighborhoods[6][43] = "Kualoa Beach"
neighborhoods[6][44] = "Lilipuna"
neighborhoods[6][45] = "Lulani Ocean"
neighborhoods[6][46] = "Mahalani"
neighborhoods[6][47] = "Mahinui"
neighborhoods[6][48] = "Makaua Kai"
neighborhoods[6][49] = "Matson Point"
neighborhoods[6][50] = "Mikiola"
neighborhoods[6][51] = "Miomio"
neighborhoods[6][52] = "Mokulele"
neighborhoods[6][53] = "Nohanai Tract"
neighborhoods[6][54] = "Parkway"
neighborhoods[6][55] = "Pikoiloa"
neighborhoods[6][56] = "Puahuula"
neighborhoods[6][57] = "Punaluu"
neighborhoods[6][58] = "Puohala Village"
neighborhoods[6][59] = "Puualii"
neighborhoods[6][60] = "Temple Valley"
neighborhoods[6][61] = "Valley Estates"
neighborhoods[6][62] = "Waihee"
neighborhoods[6][63] = "Waihole"
neighborhoods[6][64] = "Waikalua"
neighborhoods[6][65] = "Waikane"
neighborhoods[6][66] = "Windward Estates"
neighborhoods[6][67] = "Woodridge"

neighborhoods[7][0] = "Leeward Coast"
neighborhoods[7][1] = "Lualualei"
neighborhoods[7][2] = "Maile"
neighborhoods[7][3] = "Makaha"
neighborhoods[7][4] = "Military"
neighborhoods[7][5] = "Nanakuli"
neighborhoods[7][6] = "Waianae"

neighborhoods[8][0] = "Makakilo"
neighborhoods[8][1] = "Campbell Ind Prk"
neighborhoods[8][2] = "Anuhea at Makakilo"
neighborhoods[8][3] = "Makakilo-Lower"
neighborhoods[8][4] = "Makakilo-Upper"
neighborhoods[8][5] = "Nanakai Gardens"

neighborhoods[9][0] = "Metro Honolulu"
neighborhoods[9][1] = "Airport/Industl"
neighborhoods[9][2] = "Ala Moana"
neighborhoods[9][3] = "Alewa Heights"
neighborhoods[9][4] = "Aliamanu"
neighborhoods[9][5] = "Chinatown"
neighborhoods[9][6] = "City Hall"
neighborhoods[9][7] = "Dillingham"
neighborhoods[9][8] = "Downtown"
neighborhoods[9][9] = "Dowsett"
neighborhoods[9][10] = "Holiday Mart"
neighborhoods[9][11] = "Judd Hillside"
neighborhoods[9][12] = "Kakaako"
neighborhoods[9][13] = "Kalihi Area"
neighborhoods[9][14] = "Kalihi Kai"
neighborhoods[9][15] = "Kalihi Uka"
neighborhoods[9][16] = "Kalihi Valley"
neighborhoods[9][17] = "Kalihi-Lower"
neighborhoods[9][18] = "Kalihi-Upper"
neighborhoods[9][19] = "Kam Heights"
neighborhoods[9][20] = "Kapahulu"
neighborhoods[9][21] = "Kapalama"
neighborhoods[9][22] = "Kapio/Kinau/Ward"
neighborhoods[9][23] = "Kapiolani"
neighborhoods[9][24] = "Kuakini"
neighborhoods[9][25] = "Lakeside"
neighborhoods[9][26] = "Liliha"
neighborhoods[9][27] = "Makiki Area"
neighborhoods[9][28] = "Makiki Heights"
neighborhoods[9][29] = "Manoa Area"
neighborhoods[9][30] = "Manoa-Lower"
neighborhoods[9][31] = "Manoa-Upper"
neighborhoods[9][32] = "Mapunapuna"
neighborhoods[9][33] = "McCully"
neighborhoods[9][34] = "Moanalua Gardens"
neighborhoods[9][35] = "Moanalua Valley"
neighborhoods[9][36] = "Moilili"
neighborhoods[9][37] = "Nuuanu Area"
neighborhoods[9][38] = "Nuuanu Pali"
neighborhoods[9][39] = "Nuuanu-Lower"
neighborhoods[9][40] = "Oahu Country Club"
neighborhoods[9][41] = "Old Pali"
neighborhoods[9][42] = "Pacific Heights"
neighborhoods[9][43] = "Palama"
neighborhoods[9][44] = "Papakolea"
neighborhoods[9][45] = "Pauoa"
neighborhoods[9][46] = "Palolo"
neighborhoods[9][47] = "Pauoa Valley"
neighborhoods[9][48] = "Pawaa"
neighborhoods[9][49] = "Punahou"
neighborhoods[9][50] = "Punchbowl Area"
neighborhoods[9][51] = "Punchbowl-Lower"
neighborhoods[9][52] = "Puunui"
neighborhoods[9][53] = "Queens"
neighborhoods[9][54] = "Salt Lake"
neighborhoods[9][55] = "Sand Island"
neighborhoods[9][56] = "Tantalus"
neighborhoods[9][57] = "Ualakaa"
neighborhoods[9][58] = "University"
neighborhoods[9][59] = "Waikiki"
neighborhoods[9][60] = "Woodlawn"

neighborhoods[10][0] = "North Shore"
neighborhoods[10][1] = "Haleiwa"
neighborhoods[10][2] = "Kaena Point"
neighborhoods[10][3] = "Kahuku"
neighborhoods[10][4] = "Kawailoa"
neighborhoods[10][5] = "Kawela Bay"
neighborhoods[10][6] = "Kuilima"
neighborhoods[10][7] = "Laie"
neighborhoods[10][8] = "Malaekahana"
neighborhoods[10][9] = "Metcalf Acres"
neighborhoods[10][10] = "Mokuleia"
neighborhoods[10][11] = "Paalaakai"
neighborhoods[10][12] = "Pupukea"
neighborhoods[10][13] = "Sunset Area"
neighborhoods[10][14] = "Sunset/Velzy"
neighborhoods[10][15] = "Waialua"
neighborhoods[10][16] = "Waimea"

neighborhoods[11][0] = "Pearl City/Aiea"
neighborhoods[11][1] = "Aiea Area"
neighborhoods[11][2] = "Aiea Heights"
neighborhoods[11][3] = "Foster Village"
neighborhoods[11][4] = "Halawa"
neighborhoods[11][5] = "Halawa Heights"
neighborhoods[11][6] = "Manana"
neighborhoods[11][7] = "Moanalua"
neighborhoods[11][8] = "Momilani"
neighborhoods[11][9] = "Newtown"
neighborhoods[11][10] = "Pacific Palisade"
neighborhoods[11][11] = "Pearl City-Lower"
neighborhoods[11][12] = "Pearl City-Upper"
neighborhoods[11][13] = "Pearlridge"
neighborhoods[11][14] = "Royal Summit"
neighborhoods[11][15] = "Waiau"
neighborhoods[11][16] = "Wailuna"
neighborhoods[11][17] = "Waimalu"

neighborhoods[12][0] = "Waipahu"
neighborhoods[12][1] = "Crestview"
neighborhoods[12][2] = "Hale Lumi"
neighborhoods[12][3] = "Harbor View"
neighborhoods[12][4] = "Kunia"
neighborhoods[12][5] = "Renaissance"
neighborhoods[12][6] = "Robinson Heights"
neighborhoods[12][7] = "Royal Kunia"
neighborhoods[12][8] = "Seaview"
neighborhoods[12][9] = "Village Park"
neighborhoods[12][10] = "Waikele"
neighborhoods[12][11] = "Waipahu Estates"
neighborhoods[12][12] = "Waipahu Gardens"
neighborhoods[12][13] = "Waipahu Triangle"
neighborhoods[12][14] = "Waipahu-Lower"
neighborhoods[12][15] = "Waipio Gentry"