/*## PDF Object 2.1 (21.06.07) ##*/

/*## Control presence of Adobe Reader plugin ver.8.1.0 ##*/
function is_acrobat_reader_installed(){
if(navigator.plugins && navigator.plugins["Adobe Acrobat"]){
if(navigator.plugins["Adobe Acrobat"].description.indexOf("Adobe PDF Plug-In For Firefox and Netscape")!=-1){
return true;
}
}
else{
try{
var reader=new ActiveXObject('AcroPDF.PDF.1');
if(reader){
reader=null;
return true;
}
}
catch(e){}
}
return false;
}



/*## Inserisce in EMBED i file PDF ##*/
function embed_pdf(pdf_name,container_id){
if(is_acrobat_reader_installed()){
pdf_name=pdf_name+"#navpanes=0&pagemode=none&page=1&view=fitH&messages=0&toolbar=1&scrollbar=1&statusbar=0";

var pdf_object='<object classid="clsid:CA8A9780-280D-11CF-A24D-444553540000" width="100%" height="100%"><param name="src" value="'+pdf_name+'"><param name="type" value="application/pdf"><embed src="'+pdf_name+'" height="100%" width="100%" type="application/pdf" frameborder="no"></embed></object>';

document.getElementById(container_id).innerHTML=pdf_object;
}
else{
document.getElementById(container_id).innerHTML='<center><br><span class="red_alert">ATTENZIONE!! <i>Adobe Reader 8.1</i> non installato!</span><br><br>Scaricate ed installare l\'ultima versione (in formato <i>Lite</i>) dal seguente link:<br><br><a href="ar81/ar81lite_IT.exe"><img src="get_adobe_reader.gif" border="0"></a><br><br>A installazione completata ricaricare la pagina (premere il tasto F5).</center>';
}
return true;
}