
var bild = new Array();

bild[0] = new Image();
bild[0].src = "img/button_news_hi.gif";

bild[1] = new Image();
bild[1].src = "img/button_label_hi.gif";

bild[2] = new Image();
bild[2].src = "img/button_artists_hi.gif";

bild[3] = new Image();
bild[3].src = "img/button_downloads_hi.gif";

bild[4] = new Image();
bild[4].src = "img/button_links_hi.gif";

bild[5] = new Image();
bild[5].src = "img/button_shop_hi.gif";

bild[6] = new Image();
bild[6].src = "img/button_contact_hi.gif";

bild[7] = new Image();
bild[7].src = "img/button_impressum_hi.gif";


function doOn(imgName) {
	document.images[imgName].src = "img/button_" + imgName + "_hi.gif";
}

function doOff(imgName) {
	document.images[imgName].src = "img/button_" + imgName + "_lo.gif";
}

function doOnMedia(imgName,imgId) {
	document.images[imgId].src = "img/" + imgName + ".gif";
}

function doOffMedia(imgName,imgId) {
	document.images[imgId].src = "img/" + imgName + ".gif";
}


var newWin;

function kkpopup(page,width,height) {
	
	if (newWin && newWin.closed!=true) newWin.close();
	
	var posx = (screen.width/2) - (width/2);		
	var posy = (screen.height/2) - (height/2);
		
	 var propsZ=(document.all||document.getElementById)?('top=' + posy + ',left=' + posx):('screenX=' + posx + ',screenY=' + posy);
	
	props = 'width=' + width + ',height=' + height + ',' + propsZ + ',marginwidth=0,marginheight=0,resizable=no,scrollbars=no,status=no,toolbar=0,menubar=0,location=0';
	newWin = window.open('','pop',props);
	newWin.location.href = page;
}

