function printcontent(node){
  var content=node.innerHTML
  var pwin=window.open('','print_content','width=100,height=100');

  pwin.document.open();
  pwin.document.write('<html><head><style type="text/css">#head {color:green}</style></head><title> </title></head><body onload="window.print()">'+content+'</body></html>');
  pwin.document.close();
 
  setTimeout(function(){pwin.close();},1000);
}

function printall(){
	for(i = 0; i < 1; i++){
		el = document.getElementById('print_2')
		if(el != null)
			printcontent(el);
		else
			break
	}
}

function printallzbirno(){
	for(i = 0; i < 1; i++){
		el = document.getElementById('print_3')
		if(el != null)
			printcontent(el);
		else
			break
	}
}

function check(text, link1, link2){
	 var where_to= confirm(text);
	 if (where_to== true)
	 {
		 window.location=link1;
	 }
	 else
	 {
		 window.location=link2;
	  }
}
