function saveBestelling()
{
	document.getElementById('ideal_form').submit();
    return true;
}

function SERVER_HTTP_HOST(){  
     var url = window.location.href;  
     url = url.replace("http://", "");   
       
     var urlExplode = url.split("/");  
     var serverName = urlExplode[0];  
       
     serverName = 'http://'+serverName;  
     return serverName;  
}

function saveVooruitBetalen()
{
	document.location = SERVER_HTTP_HOST()+'/winkelwagen/vooruitbetalen';
}


