// JavaScript Document

function open_menu()
{if (navigator.appName.indexOf("Microsoft")!= -1) {
 document.color.style.height="228px";
}else{
 document.getElementById('color').style.height="228px";}
}
function close_menu()
{if (navigator.appName.indexOf("Microsoft")!= -1) {
 document.color.style.height="28px";
}else{
 document.getElementById('color').style.height="28px";}
}
