function Go (x) {
	location.href = x;
}

function checkTextlength() {
str = document.forms["grusskartenformular"].elements["nachricht"].value;
if (str.length > 200) str = str.substring(0, 200);
document.forms["grusskartenformular"].elements["nachricht"].value = str;  
}

function pickShirt(shirttype){
document.forms["shirtform"].elements["shirt_modell"].value = shirttype;
}


function buttonPic(motivname,bildnr){

newImage = "url(motive/s_"+ motivname +".jpg)";
newImage1 = "url(img/bg_buttonbox_gratis1.jpg)";



if(bildnr==1){
document.getElementById('button1').style.backgroundImage = newImage;
}


if(bildnr==2){
document.getElementById('button2').style.backgroundImage = newImage;
}


if(bildnr==3){
document.getElementById('button3').style.backgroundImage = newImage;
}


if(bildnr==4){
document.getElementById('button4').style.backgroundImage = newImage;
}


if(bildnr==5){
document.getElementById('button5').style.backgroundImage = newImage;
}


if(bildnr==6){
document.getElementById('button6').style.backgroundImage = newImage;
document.getElementById('buttonBox_gratis').style.backgroundImage = newImage1;
}



}

function deleteSixpack(sixpacknr){
if(window.confirm("Willst Du diesen SIXPACK wirklich löschen?")){
	tmpurl="deleteSixpack.php?sixpacknr=" + sixpacknr;
	window.location.href=tmpurl;
}else{

}

}