	function activate(w) { 
		win=window.open("",w,"width=300,height=200"); // get a handler for the window, old or new 
		win.focus(); // BRING TO FRONT
	}
	function rounded_corners(widthArray, color) {
		for (i=5; i>=0; i--) {
			document.writeln("<table bgcolor=#"+color+"><tr><td width="+widthArray[i]+"></td></tr></table>");
		}
	}
	function SaveAs (fileName) {
		var save_name= fileName;
		save_name= escape(save_name);
		document.execCommand('SaveAs',null,save_name);
		return(false);
	}
