/*
This code is from Dynamic Web Coding 
at http://www.dyn-web.com/
Copyright 2001-3 by Sharon Paine 
See Terms of Use at http://www.dyn-web.com/bus/terms.html
Permission granted to use this code 
as long as this entire notice is included.

Changed so much doubt its still similar
*/


var infoLyr;

if ((screen.height > 845 ))  {
	
	function initInfoLyr() {
		infoLyr = new writeObj('infoDiv',500,480);
		showInfo(origMsg);	
	}	
	
}


if ((screen.height < 845 ))  {

	function initInfoLyr() {
		infoLyr = new writeObj('infoDiv',350,350);
		showInfo(origMsg);	
	} 
}


function showInfo(txt) 
{
	if (!infoLyr) return;
	var cntnt = txt;
	infoLyr.writeLyr(cntnt);
}

window.onload=initInfoLyr;
