function togglesektion(id){
    var value = readCookie('GarantiInvest_Produkt_Browser');
    document.getElementById('sektion_hide_' + value).style.display = "block";
    document.getElementById('sektion_' + value).style.display = "none";

    document.getElementById('sektion_hide_' + id).style.display = "none";
    document.getElementById('sektion_' + id).style.display = "block";
    createCookie('GarantiInvest_Produkt_Browser',id,14);
}

function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
    if(document.cookie){
	    var nameEQ = name + "=";
	    var ca = document.cookie.split(';');
	    for(var i=0;i < ca.length;i++) {
		    var c = ca[i];
		    while (c.charAt(0)==' ') c = c.substring(1,c.length);
		    if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	    }
	}
	return "";
}

function ShowHide(showId,hideId){
    document.getElementById('table_' + showId).style.display = "block";
    document.getElementById('table_' + hideId).style.display = "none";
    document.getElementById('tab_' + showId).className = "garanti_selectedTab";
    document.getElementById('tab_' + hideId).className = "garanti_unselectedTab";
}
