// include in html files v1.0
// <script language="JavaScript" src="../class/warenkorb.js"></script>
// link follows <a href="javascript:addArticle('article name','article number','netto prize')">



function addArticleOld(artname,artnum,nettopr) {

LeftPosition = (screen.width) ? (screen.width-640)/2 : 0;
TopPosition = (screen.height) ? (screen.height-420)/2 : 0;

articlepage = '../warenkorb/index.php?action=insert&artikelname='+artname+'&artikelnummer='+artnum+'&nettopreis='+nettopr;
settings = 'height=420,width=640,top='+TopPosition+',left='+LeftPosition+',menubar=no,personalbar=no,scrollbars=yes,copyhistory=0,leftmargin=0,topmargin=0';

newWindow = window.open(articlepage,"Warenkorb",settings);
newWindow.focus();
}



function addCart(artnum) {

LeftPosition = (screen.width) ? (screen.width-640)/2 : 0;
TopPosition = (screen.height) ? (screen.height-420)/2 : 0;

articlepage = '../warenkorb/insert_cart.php?artnum='+artnum;
settings = 'height=420,width=640,top='+TopPosition+',left='+LeftPosition+',menubar=no,personalbar=no,scrollbars=yes,copyhistory=0,leftmargin=0,topmargin=0';

newWindow = window.open(articlepage,"Warenkorb",settings);
newWindow.focus();
}


function NewOne(page,w,h) {
	LeftPosition = (screen.width) ? (screen.width-640)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-420)/2 : 0;
	settings = 'height=420,width=640,top='+TopPosition+',left='+LeftPosition+',menubar=no,personalbar=no,scrollbars=yes,copyhistory=0,leftmargin=0,topmargin=0'
	newWindow = window.open(page,"Warenkorb",settings);
	newWindow.focus();
}

