	function printFunction(){
	
		var img=document.getElementById('printIco');

		var taglength=document.all.tags("div");
		for(i=0;i<taglength.length;i++){	
				if(taglength[i].id=="closeIcon"){
					if(taglength[i].style.display==""){
						taglength[i].style.display="none";
					}
					
				}
			}

		img.style.display="none";
		

		
		window.print(document); //PRINT THE DOCUMENT


		img.style.display="";
		for(i=0;i<taglength.length;i++){	
				if(taglength[i].id=="closeIcon"){
					if(taglength[i].style.display=="none"){
						taglength[i].style.display="";
					}
				}
			}

		
	}//end of function printFunction()
	

