CnecHa3
Постоялец
- Регистрация
- 10 Фев 2007
- Сообщения
- 105
- Реакции
- 20
- Автор темы
- #1
Код:
function submit_to_popup(url, width, height, form_name, name, location){
_top = Math.ceil((screen.height - height)/2);
_left = Math.ceil((screen.width - width)/2);
if (typeof location != "undefined" && location == true){
var location = 'yes';
}else{
var location = 'no';
}
new_win = window.open('', name , 'width=' + width + ',height=' + height + ',location='+ location +',status=no,toolbar=no,menubar=no,resizable=yes,scrollbars=no,top=' + _top + ',left=' + _left);
new_win.name = name;
new_win.focus();
form_name.action = url;
form_name.target = name;
form_name.submit();
return false;
}
Зарания спасибо!