﻿// JScript File

function GoTo(link)
{
    window.location.href = link;
}

function winopen(link,name,width,height)
{
    var DCIP = window.open(link, name, "toolbar=no,scrollbars=yes,fullscreen=no,menubar=no,titlebar=no,directories=no,resizable=no,status=no,fullscreen=no,top=0,left=0,width=" + width + ",height=" + height + "");
    DCIP.focus();
}   

function replaceHeaderRemark(tagName, className, newMsg)
{
	var allFonts = document.getElementsByTagName(tagName);
	if (allFonts != null) {
	  for (var i=0; i<allFonts.length; i++)
	  {
		  if (allFonts[i].className == className) {
			  allFonts[i].innerHTML = newMsg;
		  }
	  }
	}
}
