function fixWidth(){
if(screen.width<=1024){
document.getElementById("resolution").style.width='99%';
}
else{
document.getElementById("resolution").style.width='1000px';
}
document.getElementById("resolution").style.margin='0 auto';
}