// JavaScript Document
/*function cur(obj)
{
	obj.className = "point";
}
function out(obj)
{
	obj.className = "Dpoint";
}
function list(obj, list, objdown)
{
	var strView;
	strView = list.style.display;
	if(strView == "none")
	{
		strView = "";
		objdown.style.visibility = "visible";
		obj.style.visibility = "hidden";
	} else
	{
		strView = "none";
		obj.style.visibility = "hidden";
		objdown.style.visibility = "visible";
	}
	list.style.display = strView;
}*/
// JavaScript Document
// JavaScript Document
// JavaScript Document
// JavaScript Document
/*function cur(obj)
{
	obj.className = "point";
}
function out(obj)
{
	obj.className = "Dpoint";
}
function list(objup, list, objdown)
{
	var strView = "";     // table content object display value.
	var strimageDown = ""; // this is down image object
	var strimageUp = "";  // this is up image object
	var strList = "";     // this is div content object
	
	strList = document.getElementById(list);
	strimageUp = objup;
	strimageDown = document.getElementById(objdown);
	strView = strList.style.display;

	if(strView == "none")
	{
		strView = "";
		strimageDown.style.visibility = "visible";
		strimageUp.style.visibility = "hidden";
	} else
	{
		strView = "none";
		strimageUp.style.visibility = "hidden";
		strimageDown.style.visibility = "visible";
	}
	strList.style.display = strView;
}*/
// JavaScript Document

function OpenInNewWindow(Page,Params)
{
	window.open(Page,'',Params)
	return false
}
function cur(obj)
{
	obj.className = "point";
}
function out(obj)
{
	obj.className = "Dpoint";
}

function correctPNG() 

   {

   for(var i=0; i<document.images.length; i++)

      {

         var img = document.images[i]

         var imgName = img.src.toUpperCase()

         if (imgName.substring(imgName.length-3, imgName.length) == "PNG")

            {

               var imgID = (img.id) ? "id='" + img.id + "' " : ""

               var imgClass = (img.className) ? "class='" + img.className + "' " : ""

               var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "

               var imgStyle = "display:inline-block;" + img.style.cssText 

               if (img.align == "left") imgStyle = "float:left;" + imgStyle

               if (img.align == "right") imgStyle = "float:right;" + imgStyle

               if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle          

               var strNewHTML = "<span " + imgID + imgClass + imgTitle

               + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"

            + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"

               + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 

               img.outerHTML = strNewHTML

               i = i-1

            }

      }

   }

window.attachEvent("onload", correctPNG);









