function fixselects(){
if(document.all){//only ie 6
if(window.XMLHttpRequest)return false;
	var selects=document.getElementsByTagName('select');
	for(var i=0;i<selects.length;i++){
		if ((selects[i].name == 'isp') || (selects[i].name == 'region'))
		{
		var dmr;
		var smallWidth=selects[i].clientWidth;
		selects[i].style.visibility="hidden";		
		selects[i].style.width="auto";
		//var bigWidth=selects[i].clientWidth;
		var bigWidth=270;
		selects[i].style.width=smallWidth;
		selects[i].style.visibility='visible';		
		if(selects[i].style.display==null){selects[i].style.display='static';}
		var defaultpos=selects[i].style.position;		
		if(selects[i].style.marginRight==null){dmr=0;}else{dmr=selects[i].style.marginRight;}
		
		if(bigWidth>smallWidth){	
		var theOptions=selects[i].getElementsByTagName('option');		
			selects[i].onmouseover=function(){this.style.width=bigWidth;this.style.marginRight="-"+(bigWidth-smallWidth);
											if(this.style.position!="absolute"){this.style.position="relative";}}
			selects[i].onmouseout=function(){this.style.width=smallWidth;this.style.position=defaultpos;this.style.marginRight=dmr;}
			selects[i].onclick=function(){this.onmouseout=function(){}}			
			selects[i].onblur=function(){this.style.width=smallWidth;this.style.position=defaultpos;this.style.marginRight=dmr;this.onmouseout=function(){this.style.width=smallWidth;this.style.position=defaultpos;this.style.marginRight=dmr;}}
			selects[i].onchange=function(){this.style.width=smallWidth;this.style.position=defaultpos;this.style.marginRight=dmr;	this.onmouseout=function(){this.style.width=smallWidth;this.style.position=defaultpos;this.style.marginRight=dmr;}}
		}}}}}

window.onload=fixselects;

