function showMeTags () {
	var text;
	text = "Presentation Tags\n\n";
	text += "Heading 1 use -s1 to open and -e1 to close \n ";
	text += "Heading 2 use -s2 to open and -e2 to close \n ";
	text += "Bold use -sb to open and -eb to close \n";
	text += "Italics use -si to open and -ei to close \n";
	text += "Eg: -s1this is a test document-e1";
	
	window.alert(text);
}

	function add2fav() {
		if (window.sidebar) {
			window.sidebar.addPanel('TechniPharm - we make farming ezy','http://www.technipharm.co.nz/','');
		} 
		else if (window.external) {
			window.external.AddFavorite('http://www.technipharm.co.nz/','TechniPharm - we make farming ezy');
		} 
		else if (window.opera) {
			 var e = document.createElement('a');
			 e.setAttribute('href','http://www.technipharm.co.nz/');
			 e.setAttribute('title','TechniPharm - we make farming ezy');
			 e.setAttribute('rel','sidebar');
			 e.click();
		}
	}

