
var frameLoaded = 1;

function add2basket(id){
	window.frames.infoBasket.location.href = "/includes/box_artikel_info.php?action=add&id="+id;
}

function delItem(id){
	window.frames.infoBasket.location.href = "/includes/box_artikel_info.php?action=delItem&id="+id;
}

function delBasket(){
	window.frames.infoBasket.location.href = "/includes/box_artikel_info.php?action=emptyBasket";
}

function finishShopping(){
	window.frames.infoBasket.location.href = "/includes/box_artikel_info.php?action=emptyBasket&noreload=1";
}

function guestbook(){
	 popUpWindow('http://gb.webschmitt.de/gb.php?uid=web34&action=read',0,0,580,440);
}

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height) {

  if(left == 1) left = (screen.width/2) - width/2;
  if(top == 1) top = (screen.height/2) - height/2;

  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  if(popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'')){
	  	popUpWin.focus();
  } else {
		alert('Diese Seite wird in einem PopUp Fenster angezeigt.\nDeaktivieren Sie bitte Ihren PopUp Blocker.');  
  }
}

