function TargetBlank() {
  for (i = 0; i < document.links.length; i++) {
    if (document.links[i].getAttribute('class') == 'nwin'
      || document.links[i].className == 'nwin') {
      document.links[i].setAttribute('target', '_blank');
    }
  }
}
window.onload = TargetBlank;


function doPrintView() {
		var url = document.location.href;
		if (url.indexOf("?") != -1) {
			window.open (document.location + '&printview=1');
		} else {
			window.open(document.location + '?printview=1');
		}
}