﻿token = 1;
function changeFontSize(id) {

    token = token + id;

    if (token <=1)
       token = 1
    else if (token >=4)
        token=4
    
	if (document.all) {
		theCSS1 = document.styleSheets[0].rules[0];
		theCSS2 = document.styleSheets[0].rules[1];
		theCSS3 = document.styleSheets[0].rules[2];
		
	} 
	else 
	{
		theCSS1 = document.styleSheets[0].cssRules[0];
		theCSS2 = document.styleSheets[0].cssRules[1];
		theCSS3 = document.styleSheets[0].cssRules[2];
	}
	switch (token) {
	case 1:
		theCSS1.style.fontSize = "11px";
		theCSS2.style.fontSize = "11px";
		theCSS3.style.fontSize = "10px";
		break;
	case 2:
		theCSS1.style.fontSize = "13px";
		theCSS2.style.fontSize = "13px";
		theCSS3.style.fontSize = "12px";

		break;
	case 3:
		theCSS1.style.fontSize = "14px";
		theCSS2.style.fontSize = "14px";
		theCSS3.style.fontSize = "13px";
		break;
	case 4:
		theCSS1.style.fontSize = "15px";
		theCSS2.style.fontSize = "15px";
		theCSS3.style.fontSize = "14px";
		break;
	}
	
}



function CreateBookmarkLink() 
{ 
    title = "PMAFunding.com";   
    url = location.href;

    if (window.sidebar) 
    { 
        // Mozilla Firefox Bookmark		
        window.sidebar.addPanel(title, url,"");	
    } 
    else if (window.external) 
    { 
        // IE Favorite		
        window.external.AddFavorite( url, title); 
    }	
    else if (window.opera && window.print) 
    { 
        // Opera Hotlist		
        alert("Sorry, your browser doesn't support this function.");
    } 
} 

