// framset verhindern

function topframe()
{
	if(top.frames.length > 0)
	top.location.href=self.location;
}

function nothing()
{
	
}

function incr(prod_ref)
{
	document.getElementById(prod_ref).value++;
}

function decr(prod_ref)
{
	if (document.getElementById(prod_ref).value > 0)
		document.getElementById(prod_ref).value--;
}

function newwindow()
{
	if (document.bestellen.r_land.value != 'Deutschland')
	{
		MeinFenster=window.open('ausland-p.htm',"Zweitfenster","width=590,height=500,resizable=1,scrollbars=1");
		MeinFenster.focus();
	}
}

function newwindow2()
{	
	
	if ((document.bestellen.r_land.value == 'Deutschland') && (document.bestellen.l_land.value != 'Deutschland'))
	{
		MeinFenster=window.open('ausland-p.htm',"Zweitfenster","width=590,height=500,resizable=1,scrollbars=1");
		MeinFenster.focus();
	}
}

