//* Bug Division:
//* Flag	bug report	no		Release	Date	Author		Description
//* ----	-----------	-------	----------		--------	--------------------------------------------------
//**************************************************************************

<!--
Source = "../images/back.gif";
Source2 = "../images/top.gif";
Link = "#first";
Border = 0;

Alt = "¤W¤@­¶";
Alt2 = "¦^­¶­º";

Width = 55;
Height = 51;

Left = 5;
Top = 5;
Top2 = 55;
/*
if(document.all){
	document.write("<SPAN ID=\"Watermark\" STYLE=\"position: absolute;\"><a href=\"#\" onclick=\"history.back();return true;\"><img SRC=\"" + Source + "\" BORDER=\"" + Border + "\" ALT=\"" + Alt + "\"></A></SPAN>");
	WmUpdate();
	document.write("<SPAN ID=\"Watermark2\" STYLE=\"position: absolute;\"><a href=\""+Link+"\"><img SRC=\"" + Source2 + "\" BORDER=\"" + Border + "\" ALT=\"" + Alt2 + "\"></A></SPAN>");
	WmUpdate2();
}

if(document.layers){
	document.write("<LAYER ID=\"Watermark\" zIndex=\"1000\"><a href=\"#\" onclick=\"history.back();return true;\"><img SRC=\"" + Source + "\" BORDER=\"" + Border + "\" ALT=\"" + Alt + "\"></A></LAYER>");
	WmUpdate();
	document.write("<LAYER ID=\"Watermark2\" zIndex=\"1000\"><a href=\""+Link+"\"><img SRC=\"" + Source2 + "\" BORDER=\"" + Border + "\" ALT=\"" + Alt2 + "\"></A></LAYER>");
	WmUpdate2();
}*/

function WmUpdate(){
	if(document.all){
		Watermark.style.pixelLeft = (document.body.scrollLeft + document.body.clientWidth) - (Width + Left);
		Watermark.style.pixelTop = (document.body.scrollTop + document.body.clientHeight) - (Height + Top);
	}

	if(document.layers)	{
		document.Watermark.left = (window.pageXOffset + window.innerWidth) - (Width + Left + 16);
		document.Watermark.top = (window.pageYOffset + window.innerHeight) - (Height + Top + 16);
	}
	setTimeout("WmUpdate()",5);
}

function WmUpdate2(){
	if(document.all){
		Watermark2.style.pixelLeft = (document.body.scrollLeft + document.body.clientWidth) - (Width + Left);
		Watermark2.style.pixelTop = (document.body.scrollTop + document.body.clientHeight) - (Height + Top2);
	}

	if(document.layers)	{
		document.Watermark2.left = (window.pageXOffset + window.innerWidth) - (Width + Left + 16);
		document.Watermark2.top = (window.pageYOffset + window.innerHeight) - (Height + Top2 + 16);
	}
	setTimeout("WmUpdate2()",5);
}
//-->