﻿// JScript File

function ImageMapExportFunc(){
            var img = document.getElementById("Tabs_tbpImageMap_imgMap").src;           
            var path=  img.replace("/gif/","/pdf/");
            var pdfFile= path.substring(0, path.indexOf(".gif")) + ".pdf";
            //alert(pdfFile);
            window.open(pdfFile,'','resizable=yes,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,fullscreen=no,dependent=no,status');        
            //window.open(img.substring(0,img.lastIndexOf("/gif/")) +"/pdf/"  + pdfFile,'','resizable=yes,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,fullscreen=no,dependent=no,status');
}
