function win(imageName,imageWidth,imageHeight,alt)
{
var a='';
newWindow = window.open("about:blank","newWindow","width="+imageWidth+",height="+imageHeight);
newWindow.document.open();
newWindow.document.write('
'+alt+' ');
newWindow.document.write(' ');
newWindow.document.write('');
newWindow.document.close();
newWindow.focus();
}
function openFlash(flashPath, imageWidth, imageHeight, alt)
{
var flhtm = "";
flhtm += ''+alt+' ';
flhtm += '';
flhtm += ' ';
flhtm += ' ';
flhtm += ' ';
flhtm += ' ';
flhtm += ' ';
flhtm += ' ';
flhtm += ' ';
flhtm += ' ';
flhtm += ' ';
flhtm += '';
newWindow = window.open("about:blank","flashWindow","width="+imageWidth+",height="+imageHeight);
newWindow.document.open();
newWindow.document.write(flhtm);
newWindow.document.close();
newWindow.focus();
}
function submitForm(url){
window.open
(url ? url : "",
'_thanx',
'status=no,toolbar=no,width=300,height=300,top=105,left=190,menubar=no,resizable=yes,scrollbars=no'
)
}
function installform(str){
var em = prompt("Введите e-mail","")
if(!em)return;
return submitForm('./Resources/Pop_up_windows/subscribe.asp?email=' + em);
}