// SHARED
function init() {
	// Open off-site links in external window...
	if (document.getElementsByTagName) {
		var anchors = document.getElementsByTagName("a");
		for (var i=0; i<anchors.length; i++) {
			var anchor = anchors[i].getAttribute("href");
			if (anchor) {
				if (anchor.indexOf("everreviledrecords") == -1) {
					if (anchor.substring(0,4) == "http") anchors[i].target = "_blank";
				}
			}
		}
	}
	// Add left footer...
	document.getElementById('ftr_left').innerHTML = "Email: <a href=\"javascript:no_spam('info','everreviledrecords.com')\">info@everreviledrecords.com</a>";
}

function toggle_div(n) {
	if (document.getElementById(n).style.display == "none") { 
		document.getElementById(n).style.display = "";
	} else {
		document.getElementById(n).style.display = "none";
	}
}

function swap_img(n,opt1,opt2) {
	if (document.getElementById(n).src.indexOf(opt1) > 1) document.getElementById(n).src = opt2;
	else document.getElementById(n).src = opt1;
}

function view_img(src,title,param) {
	window.open('../view_img.php?src='+src,title,param);
}

// EMAIL
function no_spam(user,domain) {
	locationstring="mailto:"+user+"@"+domain;
	window.location=locationstring;
}

// ARTIST PAGES
function load_thumb(target,w,h,caption) {
	document.getElementById('img_menu_highlighted').innerHTML = "<a href=\"javascript:view_img('../images/" + target + "','img','width=" + w + ",height=" + h + "')\"><img src=\"phpThumb/phpThumb.php?src=../images/" + target + "&amp;h=198&amp;w=198\" alt=\"" + caption + "\" title=\"" + caption + "\" /></a>";
}