
function popup(url, width, height, name)
{
   	myCMSFenster = window.open(url,name,'width=' + width + ',height=' + height + ',status=yes,resizable=yes,menubar=no,locationbar=no,scrollbars=yes,dependent=yes' );
}


function conf()
{ 
	check = confirm("Wollen Sie das wirklich?");
	return check; 
}

function conf_exp2nor()
{ 
	check = confirm("Beim Wechsel des Modus gehen Änderungen verloren!");
	return check; 
}

function shopuser_toggle_delivery_info()
{
	if(document.USERINFO.delivery_address.checked == true)
	{
		document.USERINFO.d_company.disabled = false;
		document.USERINFO.d_department.disabled = false;
		document.USERINFO.d_partner.disabled = false;
		document.USERINFO.d_street.disabled = false;
		document.USERINFO.d_zip.disabled = false;
		document.USERINFO.d_city.disabled = false;
		document.USERINFO.d_tel.disabled = false;
		document.USERINFO.d_telsms.disabled = false;
		document.USERINFO.d_fax.disabled = false;
		document.USERINFO.d_email.disabled = false;
		document.USERINFO.d_www.disabled = false;		
	}
	else
	{
		document.USERINFO.d_company.disabled = true;
		document.USERINFO.d_department.disabled = true;
		document.USERINFO.d_partner.disabled = true;
		document.USERINFO.d_street.disabled = true;
		document.USERINFO.d_zip.disabled = true;
		document.USERINFO.d_city.disabled = true;
		document.USERINFO.d_tel.disabled = true;
		document.USERINFO.d_telsms.disabled = true;
		document.USERINFO.d_fax.disabled = true;
		document.USERINFO.d_email.disabled = true;
		document.USERINFO.d_www.disabled = true;
	}
	return 0;
}	

function confhref(href,opt_string)
{ 
	check = confirm(opt_string);
	if(check == true)
		self.location.href=href;
}
