/* 	French Ranges Support JavaScript Document
*	Author:			Barkingweb.com - Nick Barling 
*	Date:			November 29 2006	
*	Version:		1.0
*	File:			SelectRangeOptions.js
*	Description:	JavaScript file to control rangetop options selections in your_options.html page	
*	Notes:			This is a file to store external JavaScript. */

var rangetop, description;
function displayOption(selectTop, showDes)
{
	var rangeOption;
	if (selectTop != '')
		rangetop = selectTop;
		rangeOption = "images/content/" + rangetop;
		
	var rangeDescription;
	if (showDes != '')
		description = showDes;
	rangeDescription = description;
	document.getElementById('placeholder').src = rangeOption;
	document.getElementById('rangedes').innerHTML = rangeDescription;
}

