var sender=unsafeWindow["submitForm"].toSource();
//кое-чё добавляем своё
sender=/function submitForm\(\) \{(.+)\}/m.exec(sender)[1];
console.log(sender);
//unsafeWindow["submitForm"]=Function(sender); //Не пашет, так как все переменные пытается взять из изолированной области
//with(unsafeWindow){submitForm=Function(sender);} //тоже не пашед, ибо Ошибка: function Function must be called directly, and not by way of a function of another name
//ЧЁ ДЕЛАТЬ?