// JavaScript Document

var uid = new Date().getTime();
	var flashProxy = new FlashProxy(uid, '/js/JavaScriptFlashGateway.swf');
	function gotoPage(pageId) {
	  	document.location='index.php?pageId='+pageId;
	}
	


function changeFontSize(inc)
{
	tags=Array('p','h1','h2','h3','li','ul','div');
	for(t=0;t<tags.length;t++) {
	  var p = document.getElementsByTagName(tags[t]);
	  for(n=0; n<p.length; n++) {
		if(p[n].style.fontSize) {
		   var size = parseInt(p[n].style.fontSize.replace("px", ""));
		} else {
		   var size = 12;
		}
		p[n].style.fontSize = size+inc + 'px';
	   }
	}
}


function displayMore(id) {
	document.getElementById('more'+id).style.display="";	
}

