function changeBorder(element,width,style,color){
	if(!width){width = 1;}
	if(!style){style = "solid";}
	element.style.border = width + "px " + style + " " + color;
}
