
function winopen(url, id, w, h) {
	toolbar="no";

	if(id=="printview") {
		toolbar="yes";
		w=480;
		h=600;
	}
	if(id=='wishlist_printview') {
		toolbar="yes";
		w=580;
		h=620;
    }
    if (id=='productdetail') {
        w=520;
        h=542;
    }
    
    if(id=="fragen" || id=="agb" || id=="kontakt" || id=="rechtliches" || id=="anbieter" || id=="datenschutz" || id=="gift") {
		w=550;
		h=600;
	}
	
	if(!w) w=520;
	if(!h) h=540;
	popup = window.open(url,'win','width='+w+',height='+h+',location=no,toolbar='+toolbar+',scrollbars=yes,left='+(Math.round((screen.width-w)/2))+',top='+(Math.round((screen.height-h)/2)));
	popup.focus();
}


// Alert boxen Texte
var alerttxt=new Array();
alerttxt["warenkorb"] = "Dieser Artikel ist bereits in Ihrem Warenkorb! Die Menge kann dort geändert werden. ";
alerttxt["wunschzettel"] = "Dieser Artikel ist bereits auf Ihrem Wunschzettel!";



function button(id) {
	alert(alerttxt[id]);
}

function addParameterToUrl(url, param)
{
	var x = url.indexOf ("?");
	var  addChar ='?';
	var newUrl = url;

	if (x != -1) 
	{
	addChar ='&';
	}
	newUrl= url + addChar + param;
	return newUrl;
}
	
	
