<!--
function open_window1(url){
 kit=window.open(url,"subscribe",'toolbar=0,scrollbars=yes,status=yes,width=450,height=465,location=0,directories=0,menubar=0,resizable=yes');
 }
 function open_window700(url){
 kit=window.open(url,"VacuumMusic",'toolbar=0,scrollbars=yes,status=yes,width=700,height=500,location=0,directories=0,menubar=0,resizable=yes');
 }
 function open_window2(url){
 kit=window.open(url,"VacuumMusic",'toolbar=0,scrollbars=yes,status=yes,width=620,height=500,location=0,directories=0,menubar=0,resizable=yes');
 }
 function open_window3(url){
 kit=window.open(url,"VacuumMusic",'toolbar=0,scrollbars=yes,status=yes,width=450,height=400,location=0,directories=0,menubar=0,resizable=yes');
 }
 function open_window4(url){
 kit=window.open(url,"VacuumMusic",'toolbar=0,scrollbars=yes,status=yes,width=780,height=580,location=0,directories=0,menubar=0,resizable=yes');
 }
function smile (icon)
{
document.VM_Book.message.value = 
document.VM_Book.message.value + ' :' + icon + ': ';
document.VM_Book.message.focus();
}
function doSmile (icon)
{
document.VM_Foruum.req_message.value = 
document.VM_Foruum.req_message.value + ' :' + icon + ': ';
document.VM_Foruum.req_message.focus();
}
function maine(dom,visitor,display,cl) {
displayed=(typeof(display)=="undefined") ? visitor+"&#64;"+dom : display
var link1,link2
link1='mai'
link2='lto'
document.write('<a href="'+ link1 +''+ link2 +':' + visitor + '&#64;' + dom + '" class="'+ cl +'">' + displayed + '</a>');
}
function gueste(domen,guest,title) {
var link1,link2,pic
link1='mai'
link2='lto'
pic='<img src="http://vacuum-music/book/mail.gif" alt="Click to send email" width="15" height="15" border="0">'
document.write('<a href="'+ link1 +''+ link2 +':' + guest + '&#64;' + domen + '">'+ pic +'</a>');
}
function createTarget(t){
window.open("", t, "width=450,height=450");
return true;
}
function ViewInfo (about) {
var Newsletter, Friendly, Other
Newsletter='For newbies: Vacuum Music Newsletter is the way to get the information about all new site-updates to your email address, which you should put into the form below. Be sure, that your email address will NOT be used for spam and other bad things. If you are tired from the Newsletter, you will be able to unsubscribe in any moment.'
Friendly="Friendly sites are the sites, which are not related to Vacuum, but which were so kind to put our banner/link. Or (and) the sites, which have quite interesting content and belong to Vacuum-music admin's friends :)"
Other='Other text'
if (about == "Newsletter"){
alert(Newsletter);
}
else if (about == "Friendly"){
alert(Friendly);
}
else {
alert(Other);
}
}
/*
originally written by paul sowden <paul@idontsmoke.co.uk> | http://idontsmoke.co.uk
modified and localized by alexander shurkayev <alshur@narod.ru> | http://htmlcoder.visions.ru
*/
window.onerror = null;
var tooltip_attr_name = "tooltip";
var tooltip_blank_text = "(the link will be opened in pop-up window)";
var tooltip_newline_entity = "  ";
var tooltip_max_width = 400

window.onload = function(e){
	if (document.createElement) tooltip.d();
}

tooltip = {

	t: document.createElement("DIV"),
	c: null,
	g: false,

	m: function(e){
		if (tooltip.g){
			oCanvas = document.getElementsByTagName(
			(document.compatMode && document.compatMode == "CSS1Compat") ? "HTML" : "BODY"
			)[0];
			x = window.event ? event.clientX + oCanvas.scrollLeft : e.pageX;
			y = window.event ? event.clientY + oCanvas.scrollTop : e.pageY;
			tooltip.a(x, y);
		}
	},

	d: function(){
		tooltip.t.setAttribute("id", "tooltip");
		//tooltip.t.style.filter = "alpha(opacity=85)"; // buggy in ie5.0
		document.body.appendChild(tooltip.t);
		a = document.all ? document.all : document.getElementsByTagName("*");
		aLength = a.length;
		for (var i = 0; i < aLength; i++){

			//if (a[i].tagName == "A" || a[i].tagName == "BUTTON" || (a[i].tagName == "INPUT" && (a[i].type == "submit" || a[i].type == "button" || a[i].type == "reset"))) a[i].onclick = self.focus;

			if (!a[i]) continue;

			tooltip_title = a[i].getAttribute("title");
			tooltip_alt = a[i].getAttribute("alt");
			tooltip_blank = a[i].getAttribute("target") && a[i].getAttribute("target") == "_blank" && tooltip_blank_text;
			if (tooltip_title || tooltip_blank){
				a[i].setAttribute(tooltip_attr_name, tooltip_blank ? (tooltip_title ? tooltip_title + " " + tooltip_blank_text : tooltip_blank_text) : tooltip_title);
				if (a[i].getAttribute(tooltip_attr_name)){
					a[i].removeAttribute("title");
					if (tooltip_alt && a[i].complete) a[i].removeAttribute("alt");
					tooltip.l(a[i], "mouseover", tooltip.s);
					tooltip.l(a[i], "mouseout", tooltip.h);
				}
			}else if (tooltip_alt && a[i].complete){
				a[i].setAttribute(tooltip_attr_name, tooltip_alt);
				if (a[i].getAttribute(tooltip_attr_name)){
					a[i].removeAttribute("alt");
					tooltip.l(a[i], "mouseover", tooltip.s);
					tooltip.l(a[i], "mouseout", tooltip.h);
				}
			}
			if (!a[i].getAttribute(tooltip_attr_name) && tooltip_blank){
				//
			}
		}
		document.onmousemove = tooltip.m;
		window.onscroll = tooltip.h;
		tooltip.a(-99, -99);
	},

	s: function(e){
		d = window.event ? window.event.srcElement : e.currentTarget;
		if (!d.getAttribute(tooltip_attr_name)) return;
		s = d.getAttribute(tooltip_attr_name);
		if (tooltip_newline_entity){
			s = s.replace(/\&/g,"&amp;");
			s = s.replace(/\</g,"&lt;");
			s = s.replace(/\>/g,"&gt;");
			s = s.replace(eval("/" + tooltip_newline_entity + "/g"), "<br />");
			tooltip.t.innerHTML = s;
		}else{
			if (tooltip.t.firstChild) tooltip.t.removeChild(tooltip.t.firstChild);
			tooltip.t.appendChild(document.createTextNode(s));
		}
		tooltip.c = setTimeout("tooltip.t.style.visibility = 'visible';", 500);
		tooltip.g = true;
	},

	h: function(e){
		tooltip.t.style.visibility = "hidden";
		if (!tooltip_newline_entity && tooltip.t.firstChild) tooltip.t.removeChild(tooltip.t.firstChild);
		clearTimeout(tooltip.c);
		tooltip.g = false;
		tooltip.a(-99, -99);
	},

	l: function(o, e, a){
		if (o.addEventListener) o.addEventListener(e, a, false);
		else if (o.attachEvent) o.attachEvent("on" + e, a);
			else return null;
	},

	a: function(x, y){
		oCanvas = document.getElementsByTagName(
		(document.compatMode && document.compatMode == "CSS1Compat") ? "HTML" : "BODY"
		)[0];

		w_width = window.innerWidth ? window.innerWidth + window.pageXOffset : oCanvas.clientWidth + oCanvas.scrollLeft;
		w_height = window.innerHeight ? window.innerHeight + window.pageYOffset : oCanvas.clientHeight + oCanvas.scrollTop;

		tooltip.t.style.width = "auto";

		t_width = window.event ? tooltip.t.clientWidth : tooltip.t.offsetWidth;
		t_height = window.event ? tooltip.t.clientHeight : tooltip.t.offsetHeight;

		if ((tooltip_max_width) && (t_width > tooltip_max_width)){
			tooltip.t.style.width = tooltip_max_width + "px";
			t_width = window.event ? tooltip.t.clientWidth : tooltip.t.offsetWidth;
		}

		t_extra_width = 7; // CSS padding + borderWidth;
		t_extra_height = 5; // CSS padding + borderWidth;

		tooltip.t.style.left = x + 8 + "px";
		tooltip.t.style.top = y + 8 + "px";

		while (x + t_width + t_extra_width > w_width){
			--x;
			tooltip.t.style.left = x + "px";
			t_width = window.event ? tooltip.t.clientWidth : tooltip.t.offsetWidth;
		}

		while (y + t_height + t_extra_height > w_height){
			--y;
			tooltip.t.style.top = y + "px";
			t_height = window.event ? tooltip.t.clientHeight : tooltip.t.offsetHeight;
		}
	}
}
 -->