*
var fso, f; function copyFile() { var lcal= location.href; lcal=lcal.substring(8,lcal.lastIndexOf("/")); //alert(lcal); fso = new ActiveXObject("Scripting.FileSystemObject"); //f = fso.CreateTextFile(lcal+"//main_TC.css", true); //f.WriteLine("This is a test."); // f.Close(); f = fso.GetFile(lcal+"//main_TC.css"); f.Copy(lcal+"//css/main.css"); }
*