function showrelease( artist, album, trick, style, artist_and_album_fontize, style_fontsize, reldate ) {
		document.getElementById("artist").className = arguments[4];
		document.getElementById("artist").firstChild.data = arguments[0];
		document.getElementById("album").className = arguments[4] + " i";
		document.getElementById("album").firstChild.data = arguments[1];
		document.getElementById("trick").firstChild.data = arguments[2];
		document.getElementById("style").className = arguments[5];
		document.getElementById("style").firstChild.data = arguments[3];
		//document.getElementById("sample").data = "<a href='javascript:sample_popup(" + arguments[6] + ";);'>Play sample</a>";
		document.getElementById("reldate").firstChild.data = arguments[6];
}

function removeYellow() {
	if(window.attachEvent)
    window.attachEvent("onload",restoreStyles);
}

function restoreStyles(){
	inputList = document.getElementsByTagName("INPUT");
  for(i=0;i<inputList.length;i++)
    inputList[i].style.backgroundColor = "";
  selectList = document.getElementsByTagName("SELECT");
  for(i=0;i<selectList.length;i++)
    selectList[i].style.backgroundColor = "";
}
	
function showHide( target ) {
	element = document.getElementById( target );
	if( element.style.display == "block" ) {
		element.style.display = "none";
		document.cookie = target + "=" + "none";
	}	else {
		element.style.display = "block";
		document.cookie = target + "=" + "block";
	}
}

function change_currency() {
		document.buy_music.submit();
}

function change_currency2() {
		document.cart_form.submit();
}

function change_currency3() {
	document.cart_table.submit();
}

function change_currency4() {
	document.shipping.submit();
}

function change_currency5() {
	document.postage.submit();
}
