function LoadpdfViewer( where, url )
{ 
 var windowpdfViewerHTML = ''
 + '<object id="pdfViewer" onClick="return false;" '
 + 'width="99%" ' 
 + 'height="99%" '
 + ' standby="Loading..." '
 + '> '
 + '<param name="URL" value="' + url + '"> '
 + '<param name="allowFullScreen" value="true"></param> '
 + '<param name="autoStart" value="true"> '
 + '<param name="allowscriptaccess" value="always"></param> '
 + ' <embed  id="pdfViewer" name="pdfViewer" type="application/pdf" '
 + ' src="' + url + '" '
 + ' allowscriptaccess="always" '
 + ' allowfullscreen="true" '
 + ' play="true" '
 + ' loop="true" '
 + ' quality="high" '
 + ' width="99%" '
 + ' height="99%" '
 + '  > '
 + '  </embed> '
 + '</object> '
 + '<div style="text-align: center; vertical-align: center;"><a href="' + url + '" title="View pdf file, Adobe Reader required.">Download PDF</a></div>';
 where.innerHTML = windowpdfViewerHTML;
 + '<noscript><a href="' + url + '" title="Watch video"></a></noscript>'}