/* print */
function PrintPage(){
	if(document.getElementById || document.layers){
		window.print();
	}
}

/* popup */
function openwindow(src, winName){
	NewWin=window.open(src,winName,'toolbar=yes,location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no,width=750,height=650');
}

function navigateToURL(url) {
  if (!!document.all) {
    var body = document.getElementsByTagName("body")[0];
    var dummyLink = document.createElement("a");
    dummyLink.href = url;
    dummyLink.target = "_blank";
    body.appendChild(dummyLink);
    dummyLink.click();
    body.removeChild(dummyLink);
  } else {
window.open(url,"_blank");
  }
}
