function printAlert(textHEADER, textCONTENT, targetURL, targetFRAME){

if (targetURL=="no"){
	if (targetFRAME!="no"){
		document.writeln("<a href=\""+targetURL+"\" target=\""+targetFRAME+"\">");
	}
	else {
		document.writeln("<a href=\""+targetURL+"\">");
	}
}
else {}

document.writeln("  <div id=\"alertdivtop\">");
document.writeln("    <div id=\"alertdivwrap\">");
document.writeln("      <div id=\"alerticon\"><img src=\"images/infoicon.png\" width=\"75\" height=\"75\" border=\"0\" /></div>");
document.writeln("      <div id=\"alerttext\">"+textCONTENT+"</div>");
document.writeln("    </div>");
document.writeln("  </div>");

if (targetURL=="no"){
	document.writeln("</a>");
}
else {}
