function show(id){
document.getElementById(id).style.display='inline';}

function hide(id){
document.getElementById(id).style.display='none';}

var a=0;

function size(){
if (a==1){
document.getElementById("main").style.width = '1024px';
a=0;}
else{
document.getElementById("main").style.width = '100%';
a++;}
}

function get(boss,diff,pov){
document.choiceform.boss.value = boss;
document.choiceform.diff.value = diff; 
document.choiceform.pov.value = pov;
document.choiceform.submit();

}