function reproduce(v) {
var v1 = v == "+" ? "-" : "+";
document.clear();
document.writeln('<html><head><script SRC="toggle-e.js"></script></head><body>');
document.writeln('<form><input TYPE="SUBMIT" VALUE="'+v1+'" onClick="reproduce(\''+v1+'\')"></form>');
document.writeln('</body></html>');
document.close();
}