// JavaScript Document

// Show the popups.
function handsetPopup() {
	var handsetList = document.getElementById("handsetList");
	var hid = handsetList.options[handsetList.selectedIndex].value;
	if(hid != '') {
		popUp('/mobile-phones/review.php?hid=' + hid,500,500);
	}
}

function retailerPopup() {
	var retailerList = document.getElementById("retailerList");
	var sid = retailerList.options[retailerList.selectedIndex].value;
	if(sid != '') {
		popUp('/popups/tri-reviews.php?sid=' + sid,600,570);
	}
}

// Watch the buttons.
function handsetListWatch() {
   var handsetBtn = document.getElementById("handsetBtn");
   attachEventListener(handsetBtn, "click", handsetPopup, false);
}

function retailerListWatch() {
   var retailerBtn = document.getElementById("retailerBtn");
   attachEventListener(retailerBtn, "click", retailerPopup, false);
}

// Trigger the watch functions onload.
if(document.getElementById("handsetBtn")) {
	addLoadListener(handsetListWatch);
}
if(document.getElementById("retailerBtn")) {
	addLoadListener(retailerListWatch);
}
