<!--// BROWSER SNIFFING CODE	browserName = navigator.appName;	browserVers = parseInt(navigator.appVersion);	OS          = navigator.userAgent;	isMac    = OS.indexOf("Mac") != -1;	isWin    = OS.indexOf("Win") != -1;	isMacIE  = isMac && OS.indexOf("MSIE") != -1;	isMacIE5 = isMac && OS.indexOf("MSIE 5") != -1;	isMacIE4 = isMac && OS.indexOf("MSIE 4") != -1;	isMacNN = isMac && browserName.indexOf("Netscape") != -1;	isMacNN3 = isMac && browserName.indexOf("Netscape") != -1 && browserVers < 4;	isMacNN4 = isMac && browserName.indexOf("Netscape") != -1 && browserVers >= 4;	isWinIE  = isWin && OS.indexOf("MSIE") != -1;	isWinNN  = isWin && browserName.indexOf("Netscape") != -1;// function identify returns true if it can identify the browser.function identify () {	return (isMacIE4||isMacIE5||isMacNN4||isWinIE||isWinNN)}// function adjustXDimension takes the given width and adjusts// it for the browser, returning the new width.function adjustXDimension (x) {	if (isMacIE5) 	{ x+=0 }	if (isMacIE4) 	{ x+=0 }	if (isMacNN)	{ x-=13 }	if (isWinIE)	{ x+=20 }	if (isWinNN)	{  }		return x}// function adjustYDimension takes the given height and adjusts// it for the browser, returning the new height.function adjustYDimension (y) {	if (isMacIE5) 	{ y+=80 }	if (isMacIE4) 	{ y+=80 }	if (isMacNN)	{ y-=10 }	if (isWinIE)	{ y+=100 }	if (isWinNN)	{ y+=20 }			return y}// function adjustXDimensionForPop takes the given width and adjusts// it for the browser, returning the new width.function adjustXDimensionForPop (x) {	if (isMacIE5) 	{ x-=16 }	if (isMacIE4) 	{ x+=0 }	if (isMacNN)	{  }	if (isWinIE)	{ x-=5 }	if (isWinNN)	{  }		return x}// function adjustYDimensionForPop takes the given height and adjusts// it for the browser, returning the new height.function adjustYDimensionForPop (y) {	if (isMacIE5) 	{ y-=16 }	if (isMacIE4) 	{ y+=0 }	if (isMacNN)	{  }	if (isWinIE)	{ y-=25 }	if (isWinNN)	{ y+=0 }			return y}// -->