﻿
function updateProductAmount(productId, quantity, basketUrl)
{
	basketLink = document.getElementById("basketLink_" + productId);
	
	basketLink.href = basketUrl + "?productId="+productId+"&quantity="+quantity;
}

function openpopup(url, width, height){
	winpops=window.open(url,"","width=" + width + "height=" + height + ",status=no,menubar=no,location=no,scrollbars=yes")
}

function doCustomerLogin(txtUserNameId, txtPasswordId)
{
	var userName = document.forms[0][txtUserNameId].value;
	var password = document.forms[0][txtPasswordId].value;
	
	document.forms[0].username.value = userName;
	document.forms[0].userpass.value = password;
	
	var originalAction = document.forms[0].action;
	
	document.forms[0].action = "http://transfer.egger-ag.ch/dds/dds_process.php?mod=login&action=login";
	document.forms[0].target = "_blank";
	
	document.forms[0].submit();
	
	document.forms[0].action = originalAction;	
	
	return false;
}
