function setSWFDimensions (objID,width,height) {

 //alert( "objID="+objID+" | w="+width+" | h="+height );

 if (objID && width && height) {

 var fObj = document.getElementById(objID); var fEmb = document.getElementById(objID+"-embed");

 if (fObj && fObj.style) { fObj.setAttribute('width',width); fObj.setAttribute('height',height); fObj.style.width = width+'px'; fObj.style.height =
height+'px'; }

 if (fEmb != null) { fEmb.width = width; fEmb.height = height;

 if (fEmb.style) { fEmb.style.width = width+'px'; fEmb.style.height = height+'px'; } } } }

function showhide(what) {
	if (document.getElementById) { // this is the way the standards work
		var stl = document.getElementById(what).style;
	} else if (document.all) { // this is the way old msie versions work
		var stl = document.all[what].style;
	} else if (document.layers) { // this is the way nn4 works
		var stl = document.layers[what].style;
	}
	stl.display = (stl.display == "block" ? "none":"block");
}