// PRINT BUTTON +++++++++++++++++++++++++++++++++++++//
function openWin(){
	window.open(window.location.href,"printWindow");
}

// IE flicker off
try{

	document.execCommand("BackgroundImageCache", false, true);

}catch(e){}

// blank.js
$(document).ready(function(){

	// blank
	$(".blank").click(function(i){
		this.src = window.open(this.href,'_blank');return false;
	});

});

