function count(id) {
	query = "to=" + id;
    
    new Ajax.Request("upcount.php", {
      method: 'post',
      postBody: query,
      onSuccess: function(req) {
        var response = req.responseText || "no response text";
      },
      onFailure: function(){ alert("something went wrong..."); }
    });
}

function premshow(which,who) {
	xpos = (screen.width/2)-(420/2);
	ypos = (screen.height/2)-(420/2);
	
	switch (which) {
		case "B1" : title = "Bild 1"; break;
		case "B2" : title = "Bild 2"; break;
		case "B3" : title = "Bild 3"; break;
		case "B4" : title = "Bild 4"; break;
		case "PL" : title = "Preisliste"; break;
	}
	
	Prem = window.open("showprem.php?ID="+who+"&which="+which,title,"scrollbars=yes,resizable=no,menubar=no,location=no,status=no,toolbar=no,height=420,width=420,top="+ypos+",left="+xpos+"");
}