﻿var setButton = false;
function Choos2onMouseOver(id){if(!setButton){document.getElementById(id).style.color = '#FFCC00';}}
function Choos2onMouseOut(id){document.getElementById(id).style.color = '#FFFFFF';}
function Choos2onMouseClick(id){
document.getElementById(id).style.backgroundColor = '#719AD9';
document.getElementById(id).style.borderTopColor = '#ffffff';
document.getElementById(id).style.borderLeftColor = '#ffffff';
document.getElementById(id).style.borderRightColor = '#294C83';
document.getElementById(id).style.cursor = 'default';
id = id.substr(0,id.length - 1)+ "1";setButton = true;
document.getElementById(id).style.backgroundColor = 'transparent';
document.getElementById(id).style.borderTopColor = 'transparent';
document.getElementById(id).style.borderLeftColor = 'transparent';
document.getElementById(id).style.borderRightColor = 'transparent';
document.getElementById(id).style.cursor = 'pointer';
document.getElementById('box1').style.display = 'none';
document.getElementById('box2').style.display = 'block';}
//-
function Choos1onMouseOver(id){if(setButton){document.getElementById(id).style.color = '#FFCC00';}}
function Choos1onMouseOut(id){document.getElementById(id).style.color = '#FFFFFF';}
function Choos1onMouseClick(id){
document.getElementById(id).style.backgroundColor = '#719AD9';
document.getElementById(id).style.borderTopColor = '#ffffff';
document.getElementById(id).style.borderLeftColor = '#ffffff';
document.getElementById(id).style.borderRightColor = '#294C83';
document.getElementById(id).style.cursor = 'default';
id = id.substr(0,id.length - 1)+ "2";setButton = false;
document.getElementById(id).style.backgroundColor = 'transparent';
document.getElementById(id).style.borderTopColor = 'transparent';
document.getElementById(id).style.borderLeftColor = 'transparent';
document.getElementById(id).style.borderRightColor = 'transparent';
document.getElementById(id).style.cursor = 'pointer';
document.getElementById('box2').style.display  = 'none';
document.getElementById('box1').style.display  = 'block';}


