function getQuick()
{
	s = document.all.Quick.QuickFinder[document.all.Quick.QuickFinder.selectedIndex].value ;
	
	if(s!='+')
		window.location = s ;
}

function setImg( target , source)
{
	//alert(target);
	//getElementById(target).src=source;
	obj=eval("document.all." + target );
	obj.src=source;
	//document.all.MainImg.src=source;
}

function doPageLang( target , detail , formName , comboName )
{
	//alert("document.all." + formName + '.' + comboName);
	obj=eval( "document.all." + formName + '.' + comboName );

	loc= target + "?" +detail + "=" + obj.options[obj.selectedIndex].value;
	
	if( obj.options[obj.selectedIndex].value>0)
		getUrl(loc);
}

function getUrl(url)
{
	window.location=url;
}
