//opens a new window
//*****************************************
function popWinLoc (url,w,h,t,l) 
{

	var popw = window.open(url,"","width="+w+",height="+h+",menubar=no,scrollbars=yes,toolbar=no,location=no,directories=no,resizable=yes,top="+t+",left="+l+"");
	popw.focus();
}
//********************************************

//adds into the webbasedcontent
//***************************************
function insertContent(imageName)
{
	window.returnValue = "../UploadIMG/" + imageName;
	window.close();
}
//action for pdf links onmouse over
//***************************************
function pdfMouseOver(divPDF)
{
	divPDF.style.backgroundColor ="black";
	divPDF.style.color = "orange";
	divPDF.style.cursor = "hand";
}
//action for pdf links onmouse out
//***************************************
function pdfMouseOut(divPDF)
{
	divPDF.style.backgroundColor ="#da2128";
	divPDF.style.color = "white";
	divPDF.style.cursor = "hand";
}
//goes to printer
//***************************************
function printPage(divPDF)
{
	document.getElementById("noPrint").style.display = "none";
	window.print();
	window.close();
}
//goes to printer
//***************************************
function toTarget(target)
{
	document.location.href = target ;
}