function ChangeGroup(id) {
res = ServiceChangeGroup(id);
// alert(res);
// if (res == "ok") {
// // z= new String (document.location);
// tmp= z.split("/");
// location.href = tmp[1];
// // }
//document.location='http://www.pixeli.su/'+id+'-r/';
}
function ServiceChangeGroup(id) {
data = new Array();
o = new Object();
o.name = "id";
o.value = id;
data.push(o);
res = ServiceRequest("changegroup", data);
return res;
}
-->
|