// erkennen, ob Aufruf aus Internet oder Intranet
//var web='62.8.198.34';
//var localserver='bookshop';
//if ((location.host.indexOf(".")<0) || (location.host.indexOf(".sym")>0)) { 
//	web=localserver;
//}

function hilfe(dat) {
	var w = window.open(dat,"Hilfe","width=820,height=500,dependent=yes,scrollbars=yes");
	w.focus();
}

function info(dat) {
	var w = window.open(dat,"Info","width=820,height=500,left=0,top=100,dependent=yes,scrollbars=yes,resizable=no");
	w.focus();
}

function glossar(dat) {
	var w = window.open(dat,"Glossar","width=400,height=500,left=0,top=0,scrollbars=yes,dependent=yes");
	w.focus();				
}

function sym(dat) {
	var w = window.open(dat,"Symposion","location,scrollbars=yes,menubar=yes,status=yes,resizable=yes,toolbar=yes");
	w.focus();
}

function werbung(dat) {
	var w = window.open(dat,"Werbung","width=260,height=288,left=0,top=0,dependent=yes");
	w.focus();				
}

function werbung2(dat) {
	var w = window.open(dat,"Werbung2","width=250,height=252,left=0,top=0,dependent=yes");
	w.focus();				
}
/**
 * Warenkorb als solchen aufrufen, neuer Shop ab 1.2.2009
 * 
 */

function shop(dat) {
	//hänge Zufallszahl an, um Caching-Strategien auszuhebeln 
	var link = 'https://www.verlagsservice-online.de/proj/WebObjects/proj.woa/wa/www_symposion_de/shop?s=' + Math.floor(Math.random()*10000) ;
//	var leftpos=0;

//	if (screen) {
//		leftpos=screen.width-800;
//	}
   window.location.href = link;
	//var w = window.open(link,"Shop","width=800,height=500,left="+leftpos+",top=0,location,scrollbars=yes,menubar=yes,status=yes,resizable=no,toolbar=yes");
}

function down1(link) {
	var w = window.open(link,"Download","width=800,height=500,left=0,top=75,location,scrollbars=yes,menubar=yes,status=yes,resizable=no,toolbar=yes");
	w.focus();
}
 
function down2(link) {
	var w = window.open(link,"Download2","width=650,height=500,left=0,top=100,location,scrollbars=yes,menubar=yes,status=yes,resizable=no,toolbar=yes");
	w.focus();
}

/**
 * Legt was in den Warenkorb, neuer Shop ab 1.2.2009
 * 
 */

function bst(p_id,add_typ) {
	//var link='http:\/\/' + web + '\/cgi-bin\/s_catalog_ci.cgi?ref=1&site=W&action=add&quantity=1';
	var link = 'https://www.verlagsservice-online.de/proj/WebObjects/proj.woa/wa/www_symposion_de/shop?id=';
	link = link + p_id + '&s=' +  Math.floor(Math.random()*10000);
	window.location.href = link;
	/*
	link=link + '&product_id=' + p_id;

	if ((add_typ=='1') || (add_typ=='2')) {
		link=link + '&i=' + add_typ;
	}
	
	var leftpos=0;

	if (screen) {
		leftpos=screen.width-800;
	}

	var w=window.open(link,"Shop","width=800,height=500,left="+leftpos+",top=0,location,scrollbars=yes,menubar=yes,status=yes,resizable=no,toolbar=yes");
	w.focus();
	*/
}

function formular() {
	var w = window.open('../vormerkung.htm',"Formular","width=505,height=420,left=0,top=100,scrollbars=yes,resizable=no");
	w.focus();
}



