 function textHomeResize(link_obj) {


	var currsize = getData('textsize');
	var newsize = (currsize=="l")?"s":"l";

	

	if (String(window.location.href).indexOf('?') != -1) {
		//document.getElementById('Welcome_text_box').innerHTML = window.location.href + "&textsize=1" ;
		window.location = window.location.href + "&textsize=1";
	}
	else {
		//document.getElementById('Welcome_text_box').innerHTML = window.location.href + "?textsize=1" ;	
		window.location = window.location.href + "?textsize=1";
	}
	
	
	
	return false;

}

function init_home_page () {
	// empty
}