<!--
function insertSelectOptions(select, arr)
{
	setOptions(select, arr, 1);
}

function setOptions(select, arr, leave)
{
	select.length = leave ? leave : 0;
	for (var i in arr) {
		select.options[select.length] = new Option(arr[i], i, false, false);
	}
	select.selectedIndex = 0;
	select.disabled = false;
	return;
}

function hideDiv(div)
{
     document.getElementById(div).style.display = "none";;
}

 
function open_pop_up(page)
{
window.open(page, 'mobile', 'width=500, height=500, copyhistory=no, directories=no, menubar=no,l ocation=no, resizable=no, scrollbars=no');
} 

// -->