

var fontSize = 14;
var expDays = 7;
var fontColor = '#000000';
var secure = false;

function FontSizeInc(id)
{
if (fontSize >= 20 ){
fontSize = 20
setCookie('fontSize', fontSize);
}
				var strid = '';
				strid = id ;
				if (fontSize <= 20 ){
				fontSize = fontSize + 1;
				document.getElementById(strid).style.fontSize = fontSize+"px";
				}
}
function FontSizeDec(id)
  
{
if (fontSize >= 20 ){
fontSize = 20
setCookie('fontSize', fontSize);
}
				var strid = '';
				strid = id ;
				if (fontSize >= 15 ){
				fontSize = fontSize - 1;
				document.getElementById(strid).style.fontSize = fontSize+"px";
				setCookie('fontSize', fontSize);
				}

}
function FontColor(id , val)
{
				var strid = '';
				strid = id ;
				document.getElementById(strid).style.color = val;
				setCookie('fontColor', val);
}

function setCookie(name, value, expires, path, domain, secure)
{
    //document.cookie= name + "=" + escape(value) +
    //    ((expires) ? "; expires=" + expires.toGMTString() : "") +
    //    ((path) ? "; path=" + path : "") +
    //    ((domain) ? "; domain=" + domain : "") +
    //    ((secure) ? "; secure" : "");
    document.cookie = name + '=' + value;
}

function getCookie(name)
{
    var dc = document.cookie;
    var prefix = name + "=";
    var begin = dc.indexOf("; " + prefix);
    if (begin == -1)
    {
        begin = dc.indexOf(prefix);
        if (begin != 0) return null;
    }
    else
    {
        begin += 2;
    }
    var end = document.cookie.indexOf(";", begin);
    if (end == -1)
    {
        end = dc.length;
    }
    return unescape(dc.substring(begin + prefix.length, end));

}

function deleteCookie(name, path, domain)
{
    if (getCookie(name))
    {
        document.cookie = name + "=" + 
            ((path) ? "; path=" + path : "") +
            ((domain) ? "; domain=" + domain : "") +
            "; expires=Thu, 01-Jan-70 00:00:01 GMT";
    }
}
function CheckCookies()
{
fontSize = getCookie('fontSize')
fontColor = getCookie('fontColor')
if (fontSize == null){
fontSize = 14 ;
setCookie('fontSize', fontSize);
}
if (fontColor == null){
fontColor ='#000000';
setCookie('fontColor', fontColor);
}
if (fontSize >= 20 ){
fontSize = 20
setCookie('fontSize', fontSize);
}
document.getElementById('Bodytext').style.color = fontColor;
document.getElementById('Bodytext').style.fontSize = fontSize;

}

