var newwindow;
function shippingPopUp(url)
{
	newwindow=window.open(url,'name','height=560,width=510,top=200,left=200');
	if (window.focus) {newwindow.focus()}
}

var newwindow;
function CCPopUp(url)
{
	newwindow=window.open(url,'name','height=265,width=570,top=200,left=200');
	if (window.focus) {newwindow.focus()}
}

var newwindow;
function VorteilePopUp(url)
{
	newwindow=window.open(url,'name','height=400,width=500,top=200,left=200');
	if (window.focus) {newwindow.focus()}
}

var newwindow;
function AGBPopUp(url)
{
	newwindow=window.open(url,'name','width=600,top=200,left=200,resizeable=0,scrollbars=yes,height=500,');
	if (window.focus) {newwindow.focus()}
}

var newwindow;
function ImpressumPopUp(url)
{
	newwindow=window.open(url,'name','width=590,top=200,left=200,scrollbars=no,height=500,');
	if (window.focus) {newwindow.focus()}
}

var newwindow;
function WiderrufsbelehrungPopUp(url)
{
	newwindow=window.open(url,'name','height=600,width=600,top=200,left=200,resizeable=0,scrollbars=yes,');
	if (window.focus) {newwindow.focus()}
}

function showHideElement(elementId){
	var obj = document.getElementById(elementId);
		if(obj.style.display == 'block'){
		obj.style.display='none';
	}
	else{
		obj.style.display='block';
	}
}