// global 
// footer hover effects
function changelink_footer(){
            document.getElementById('footerSwitch').style.color='#FF9933'; 
            document.getElementById('footerBlue').style.color='#00479C'; 
}

function changeback_footer(){
            document.getElementById('footerSwitch').style.color=''; 
            document.getElementById('footerBlue').style.color=''; 
}




function swapImage(thisImage,newImage) {
	if (document.images) {
		document[thisImage].src = eval(newImage + '.src')
	}
}

function convert_password_input(hide_field,show_field,focus_on){

	document.getElementById(hide_field).style.display='none';
	document.getElementById(show_field).style.display='';
	document.getElementById(focus_on).focus();
	}
function clearUsername(){
	if (document.getElementById('username_input').value=='Email'){
		document.getElementById('username_input').value = '';
	}

}

// our_products.html 
// scrolling div script
function mv2(v){
document.getElementById('logoscroll').scrollLeft=document.getElementById('logoscroll').scrollLeft+v;
}
function mv(v){
tid=setInterval("mv2("+v+")",50);
}
function cl(){
clearInterval(tid);
}





// Golbal (contact page)
// textArea Focus Style
function setbg(color, sID)
	{
		document.getElementById(sID).style.background=color
	}
	

// Dynamic Version by: Nannette Thacker -->
// http://www.shiningstar.net -->
// Original by :  Ronnie T. Moore -->

function textCounter(field,cntfield,maxlimit) {
if (field.value.length > maxlimit) // if too long...trim it!
field.value = field.value.substring(0, maxlimit);
// otherwise, update 'characters left' counter
else
cntfield.value = maxlimit - field.value.length;
}
//  End -->

