﻿    function printElement(elementId)
    {
     var printContent = document.getElementById(elementId);
     printContent = printContent.innerHTML.replace("display: none;"," ");
     var windowUrl = 'about:blank';
     var uniqueName = new Date();
     var windowName = 'Print' + uniqueName.getTime();
     var printWindow = window.open(windowUrl, windowName, 'width=450,height=350,scrollbars=1');

     printWindow.document.write(printContent);
     printWindow.document.close();
     printWindow.focus();
     printWindow.print();
     //printWindow.close();
    }


	function ShowImage(strSource){
		imgObj = document.getElementById('photo-big');
		if(imgObj){
			imgObj.src = strSource;
		}
}