
var bild = new Array();

bild[0] = new Image();
bild[0].src = "img/button_homepage_hi.gif";

bild[1] = new Image();
bild[1].src = "img/button_webshop_hi.gif";

function doOn(imgName) {
	document.images[imgName].src = "img/button_" + imgName + "_hi.gif";
}

function doOff(imgName) {
	document.images[imgName].src = "img/button_" + imgName + ".gif";
}


var newWin;

function blisspopup(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;
}
