var used='';

function CheckSearch(f){
    if(f.text.value=='' || f.text.value=='Поиск'){
        alert('Введите строку поиска');
        f.text.focus();
        return false; 
    }
    return true;
}

function openPrintWindow(url){
   var z = window.open(url,"","fullscreen,top=50,left=50,width=650,height=600,toolbar=no,scrollbars=yes,menubar=no,history=no,resizable=yes");
   z.focus();
}

function get_flash(id,path,width,height,codebase_version,classid)
{
        var tag = document.getElementById(id);
        var code = '';

        code = '<object classid="clsid:'+classid+'" width="'+width+'" height="'+height+'" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+codebase_version+'">';
        code += '<param name="movie" value="'+path+'"><param name="play" value="true"><param name="loop" value="true"><param name="quality" value="high"><param name="menu" value="false"><param name="wmode" value="transparent">';
        code += '<embed src="'+path+'" wmode="transparent" loop="true" quality="high" menu="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="'+width+'" height="'+height+'"></object>';
        tag.innerHTML = code;
}
