
function show_menu_sub(n) {
	if (document.getElementById('menusub'+n).style.display=='block')
		{ document.getElementById('menusub'+n).style.display='none'; }
		else
		{ document.getElementById('menusub'+n).style.display='block'; }
	}


function new_win_photo(dir,img,w,h){ 
myWin=window.open('','img','width='+w+',height='+h+',top=50,left=50,titlebar=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no');
window.myWin.focus();
myWin.document.open();
 myWin.document.write('<title>База отдыха Прибой, Саки :: Просмотр фотографии</title>');
 myWin.document.write('<body style="background-image: url(img/bg2.gif); background-repeat: repeat;" onload="JavaScript:window.self.focus();">');
 myWin.document.write('<center><img onClick="self.close();return false" border=1 title="Двойной клик на фото чтобы закрыть окно" src=' + dir + '/' + img + '>');
 myWin.document.write('<br><br><font face="Tahoma" style="font-size: 8pt" color="#333333"><a style="text-decoration: none; color: #0000FF" href="#" onClick="self.close();return false">[ Закрыть окно ]</a></font>');
 myWin.document.close();
 }

function new_win_calc(){
myWin=window.open('/calc.ssi','html','width=300,height=240,top=300,left=200,titlebar=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no');
window.myWin.focus();
}


var colors = new Array();
colors[0] = "#369";
colors[1] = "red";
var next = 0;
var next2 = 0;

function colorPhone()
{

	// first text blinks
	headcolor = colors[next];
	document.getElementById("head1").style.color=headcolor;
	
	// second text blinks
	if (next==0) {next2=1;} else {next2=0;}
	headcolor2 = colors[next2];
	document.getElementById("head2").style.color=headcolor2;
	
	next++;
	
	if(next>colors.length-1) next=0;
	window.setTimeout("colorPhone()",3000);
}

