
/********************************************
 *
 * Copyright (c) 2003-2010 XML-INTL Ltd.
 *
 * All Rights Reserved
 *
 ********************************************/

var checkboxHeight = "25";
var radioHeight = "25";
var selectWidth = "185";

if ( $.browser.msie ) 
{
	if($.browser.version == "6.0" )
	{
		selectWidth = "175";
	}
}

$("head").append('<style type="text/css">input.styled { display: none; } select.styled { position: relative; width: ' + selectWidth + 'px; opacity: 0; filter: alpha(opacity=0); z-index: 5; }</style>');

function updateSelect(selectId, spanId)
{
	var selectBox = document.getElementsByName(selectId)[0];
	var index = selectBox.selectedIndex;
	var selectedText = selectBox.options[index].text;
	
	var selectBox = document.getElementById(spanId);
	selectBox.innerHTML = selectedText;
}


