// JavaScript Document
function isIE5() {
	return (navigator.userAgent.indexOf("MSIE 5") > -1);
}
function isIE6() {
	return ((navigator.userAgent.indexOf("MSIE 6") > -1) && (navigator.userAgent.indexOf("Opera") == -1));
}
function isIE() {
	return (isIE5() || isIE6());
}
 
function fixpng() {
	for (var i = 0; i < document.images.length; i++) {
		var img = document.images[i];
		imgSrc = img.src;
		if (imgSrc.substr(imgSrc.length-3).toLowerCase() == "png") {
			var w, h;
			w = img.width, h = img.height;
			img.src = "/radio/pic/pic.gif";
			img.width = w, img.height = h;
			img.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'" + imgSrc + "\', sizingMethod='scale');";
		}
	}
}
var isIE = isIE();
if ( isIE ) window.attachEvent("onload", fixpng); 

var flag = 0;
function volumer() {
	x_im = document.getElementById("volume");
	if (flag == 0){
		x_im.src = "/radio/pic/volume_on.gif";
		flag = 1;
	} else {
		x_im.src = "/radio/pic/volume_off.gif";
		flag = 0;
	}
}


function NoSpam(){
	document.getElementById('mail').innerHTML = '<a href="mailto:gerbert_morales@mail.ru">gerbert_morales@mail.ru</a> / <a href="http://community.livejournal.com/jah_division/">&#1044;&#1078;&#1072;&#1044;&#1080;&#1074;&#1080;&#1078;&#1085; &#1074; &#1046;&#1046;</a> / <a href="http://www.myspace.com/jahdivisionrussia">&#1044;&#1078;&#1072;&#1044;&#1080;&#1074;&#1080;&#1078;&#1085; &#1074; MySpace</a>';
}