function open_win(addr, width, height, title )
{
    r = window.open( addr, '', "width="+width+", height="+height+", location=0, menubar=0, resizable=0, scrollbars=1, status=0, titlebar=0, toolbar=0, screenX=100, left=100, screenY=30, top=60 ");
    return r;
}

function openPic(image, width, height) {
    var win;
    if( win ) {
        win.close();
    }
    win = window.open( '', 'win', 'location=0, toolbar=0, menubar=0, scrollbars=0, height='+height+', width='+width+', status=0' );
    win.document.write( '<html><head><title>Мебельный портал furniterra.ru</title></head>' );
    win.document.write( '<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">' );
    win.document.write( '<a href="javascript: window.close()" title="Закрыть окно"><img src="'+image+'" width="'+width+'" height="'+height+'" border="0" /></a>' );
    win.document.write( '</body></html>' );
    win.document.close();
}
    
function insertFlash(src, width, height)
{
	document.writeln ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + width + '" height="' + height + '">');
	document.writeln ('<param name="movie" value="' + src + '">');
	document.writeln ('<param name="quality" value="high">');
	document.writeln ('<param name="bgcolor" value="white">');
	document.writeln ('<param name="wmode" value="opaque">');
	document.writeln ('<embed style="display:block" src="' + src + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '" wmode="opaque"></embed>');
	document.writeln ('</object>');
}


