function switchFontSize() {
	jar = new CookieJar();
	var stylepath = 'fileadmin/template/css/custom/size';
	if($('fontsize')) {
		var cookstyle = jar.get('Stylesheet');
		if (cookstyle == false || cookstyle == undefined) {
			cookstyle = '0';
			jar.put('Stylesheet', cookstyle);
		}
		if(cookstyle==0) {
			$('fontsize').href = stylepath + '1.css';
			jar.put('Stylesheet', 1);
		} else {
			$('fontsize').href = stylepath + '0.css';
			jar.put('Stylesheet', 0);
		}
	} else {
		var cookstyle = jar.get('Stylesheet');
		if (cookstyle == false || cookstyle == undefined) {
			cookstyle = '0';
			jar.put('Stylesheet', cookstyle);
		}
		var head = document.getElementsByTagName('head')[0];
		var link = document.createElement("link");
			link.setAttribute("type", "text/css");
			link.setAttribute("rel", "stylesheet");
			link.setAttribute("href", stylepath+cookstyle+".css");
			link.setAttribute("media", "screen");
			link.setAttribute("id", "fontsize");
			
			head.appendChild(link);
	}
}

document.observe("dom:loaded", switchFontSize);

function add_to_favorite() {
	
	title = "Octapharma.com"; 
	
	url = "http://www.octapharma.com";
	
	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
		return true; 
	}
}

