function openPDF(pdfURL){
   pdfWin = window.open(pdfURL,'pdfWin','height=400,width=700,top=10,left=10,resizable=1,scrollbars=1,menubar=1');
   pdfWin.focus();
}

function openNew(url){
	window.open(url)
}

function printMe(){
	//window.location.reload();
	window.print();
}

function replaceContent(divFrom, divTo){
	var divText = document.getElementById(divFrom).innerHTML;
	document.getElementById(divTo).innerHTML = divText;
}

var lastLink="";
function replacePfContent(divFrom, divTo, linkId){
	var divText = document.getElementById(divFrom).innerHTML;
	document.getElementById(divTo).innerHTML = divText;
	
	if(lastLink != "") {
		document.getElementById(lastLink).className = "highlightoff";
	}
	
	lastLink = linkId;
	document.getElementById(lastLink).className = "highlighton";
}
