
function openWindow(url)
{
	var cWindow = window.open(url,"SCI","width=640,height=360,resizable=yes,scrollbars=yes,toolbar=no,status=no,location=no,");
}


function windowOpen(url)
{
// für PDF-Dateien
	var cWindow = window.open(url,"SCI","width=640,height=600,resizable=yes,scrollbars=yes,toolbar=no,status=no,location=no,");
}

function popuparticle(url)
{
	var cWindow = window.open(url,"Fenster","width=240,height=120,resizable=no,scrollbars=no,toolbar=no,status=no,location=no");
}
function popuparticledetail(url)
{
	var cWindow = window.open(url,"Fenster","width=500,height=450,resizable=yes,scrollbars=yes,toolbar=no,status=no,location=no");
}

function showPrice(url)
{
if (document.forms["orderBoxForm"]){
		if (document.forms["orderBoxForm"].version.value == 'digital' ) {
		document.getElementById('price_info').innerHTML =  document.forms["orderBoxForm"].preis_digital.value +',-&nbsp;&euro;'; 
		document.getElementById('version_info').innerHTML ='Bereitstellung: Download'; 

		} 

		if (document.forms["orderBoxForm"].version.value == 'print+digital' ) {
		document.getElementById('price_info').innerHTML =  document.forms["orderBoxForm"].preis_print_digital.value +',-&nbsp;&euro;'; 
		document.getElementById('version_info').innerHTML ='Bereitstellung: Download und Versand per Post'; 

		}

		if (document.forms["orderBoxForm"].version.value == 'print' ) {
		document.getElementById('price_info').innerHTML =  document.forms["orderBoxForm"].preis_print.value +',-&nbsp;&euro;';
		document.getElementById('version_info').innerHTML ='Bereitstellung: Versand per Post'; 
		} 

}
}

function popupstudiendetail(url)
{
	var cWindow = window.open(url,"Fenster","width=500,height=550,resizable=yes,scrollbars=yes,toolbar=no,status=no,location=no");
}

