// JavaScript Document
function gen_div() {
for (i=1; i <=12; i++) {
    document.getElementById('Punkt'+i).style.background="none";
   }
}

function show_menu(get_id) {
  gen_div();
  var cur_el = document.getElementById(get_id.id);
  var gen_id = (cur_el.id);
  for (i=1; i<=12; i++) {
	  var color = (i>0 && i<=6) ? '#a1b1db' : '#526aaf';
	  if (gen_id==("Punkt"+i)) document.getElementById(gen_id).style.backgroundColor=color;
	}
  clearTimeout(no_blink);
 }


 var no_blink;
 function no_quit() {
   no_blink = window.setTimeout("gen_div()",100);
 }

function show_bg(v,color) {
 document.getElementById(v.id).style.backgroundColor=color;
}


//работа с окнами
function get_open(url) {
 okno=window.open('/templates/img.php?id='+url,'img','width=250,height=250, resizable=1 , scrollbars=1');
}


function test() {
 if (!okno) return false;
 else if (okno.closed) return false;
 else return true
}

