function jsResizeFlash () {
	var nWidth = arguments[0].nWidth ? arguments[0].nWidth : null;
	var nHeight = arguments[0].nHeight ? arguments[0].nHeight : null;
	//
	var divFlash = document.getElementById("divFlash");
	divFlash.style.margin = "0 auto";
	divFlash.style.position = "relative";
	if (nWidth) divFlash.style.width = nWidth;
	if (nHeight) divFlash.style.height = nHeight;
	//
	if (nHeight && nWidth) {
		var sResponse = "'jsResizeFlash' resized '"+divFlash.id+"' to width='"+nWidth+"' and height='"+nHeight+"'.";
	} else if (nWidth && !nHeight) {
		var sResponse = "'jsResizeFlash' resized '"+divFlash.id+"' to width='"+nWidth+"'.";
	} else if (!nWidth && nHeight) {
		var sResponse = "'jsResizeFlash' resized '"+divFlash.id+"' to height='"+nHeight+"'.";															
	} else {
		var sResponse = "'jsResizeFlash' did not resize anything (no values passed).";
	}
	return(sResponse);
}