/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, '');
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}

window.onload = function()
{
	if(document.getElementById('lstChangeAll'))
	{
		changeAll = document.getElementById('lstChangeAll');
		changeAll.onchange = function()
		{
			selects = document.getElementsByTagName('select');
			for(i = 0; i < selects.length; i++)
			{
				selectName = selects.item(i).getAttribute('name');
				if(selectName != null && selectName.search(/type\[\]/) > -1)
				{
					selects.item(i).selectedIndex = changeAll.selectedIndex;
				}
			}
		}
	}
}
