function setCookie (name, value, expires, path, domain, secure) 
{
    document.cookie = name + "=" + escape(value) +
        ((expires) ? "; expires=" + expires : "") +
        ((path) ? "; path=" + path : "") +
        ((domain) ? "; domain=" + domain : "") +
        ((secure) ? "; secure" : "");
}

function getCookie(name) 
{
	var cookie = " " + document.cookie;
	var search = " " + name + "=";
	var setStr = null;
	var offset = 0;
	var end = 0;
	if (cookie.length > 0) 
	{
		offset = cookie.indexOf(search);
		if (offset != -1) 
		{
			offset += search.length;
			end = cookie.indexOf(";", offset)
			if (end == -1) 
			{
				end = cookie.length;
			}
			setStr = unescape(cookie.substring(offset, end));
		}
		else
			return 0;
	}
	else
		return 0;
	return(setStr);
}

function winop()
{
if(!getCookie('music'))
{
	setCookie("music", "on", "Mon, 01-Jan-3011 00:00:00 GMT", "/");
	windop = window.open("2.html","музычка","height=30,width=130,left=20,top=30");
}
else
{
	if(getCookie('music')=='off')
	{
		setCookie("music", "on", "Mon, 01-Jan-3011 00:00:00 GMT", "/");
		windop = window.open("2.html","музычка","height=30,width=130,left=20,top=30");
	}
}
if(getCookie('music2')=='on')
{
	setCookie("music2", "off", "Mon, 01-Jan-3011 00:00:00 GMT", "/");
}
}

function winop2()
{
if(!getCookie('music2'))
{
	setCookie("music2", "on", "Mon, 01-Jan-3011 00:00:00 GMT", "/");
	windop = window.open("22.html","музычка","height=30,width=130,left=20,top=30");
}
else
{
	if(getCookie('music2')=='off')
	{
		setCookie("music2", "on", "Mon, 01-Jan-3011 00:00:00 GMT", "/");
		windop = window.open("22.html","музычка","height=30,width=130,left=20,top=30");
	}
}
if(getCookie('music')=='on')
{
	setCookie("music", "off", "Mon, 01-Jan-3011 00:00:00 GMT", "/");
}
}
