function openPrintWindow(objectType, printWrapperId, width, height)

{

 

            var srcContainer = document.getElementById(printWrapperId);

 

            if(srcContainer)

            {

                        if(!width) width = srcContainer.offsetWidth + 30;

                        if(width > screen.width) w = screen.width;

                        if(!height) height = srcContainer.offsetHeight + 75;

                        if(height > screen.height) h = screen.height;

                        if(height < 500) h = 500;

                        openPopUp("/Webresources/FAQScripts/Printfaq.aspx?objtype=" + objectType + "&container=" + printWrapperId, width, height, "scrollbars=1");

            }

}