function swfprint(furl,fwidth,fheight,transoption)	{
	var id_names = "flashObject" + getDummyString();
	var objHtml = '';

	objHtml = objHtml + '<object id="'+id_names+'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"';
	objHtml = objHtml + ' codebase="'+document.location.protocol+'//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"';
	objHtml = objHtml + ' width="'+ fwidth + '" height="' + fheight + '" align="middle">';
	objHtml = objHtml + '<param name="movie" value="'+ furl + '"/>';
	if (transoption == "t")	{
		objHtml = objHtml + '<param name="wmode" value="transparent"/>';
	} else if (transoption == "o")	{
		objHtml = objHtml + '<param name="wmode" value="opaque"/>';
	}
	objHtml = objHtml + '<!-- Hixie method -->';
	objHtml = objHtml + '<!--[if !IE]> <-->';
	objHtml = objHtml + '<object type="application/x-shockwave-flash" data="'+ furl + '" width="'+ fwidth + '" height="' + fheight + '"';
	if (transoption == "t")	{
		objHtml = objHtml + ' wmode="transparent"';
	} else if	(transoption == "o")	{
		objHtml = objHtml + ' wmode="opaque"';
	}
	objHtml = objHtml + '></object>';
	objHtml = objHtml + '<!--> <![endif]-->';
	objHtml = objHtml + '</object>';
	document.write(objHtml);
}
function getDummyString() {
	var date = new Date();
	var month = date.getMonth()+1;
	if(eval(month)<10) {
		month = "0" + month;
	}
	return date.getFullYear()+""+month+""+date.getDate()+""+date.getHours()+""+date.getMinutes()+""+ date.getSeconds();
}
// RollOver
function imageOver(imgs) {
	imgs.src = imgs.src.replace("off.gif", "on.gif");
}
function imageOut(imgs) {
	imgs.src = imgs.src.replace("on.gif", "off.gif");
}

// Go to URL fot Microsites
function gositemap()	{
	opener.location.href = '/util/sitemap.asp';
	window.close();
}
function goifez()	{
	opener.location.href = '/main.asp';
	window.close();
}

function initMoving(target) {
	if (!target)
		return false;

	var obj = target;
	obj.initTop = 200;
	obj.initLeft = 920;
	obj.bottomLimit = document.documentElement.scrollHeight - 220;
	obj.topLimit = 150;

	obj.style.position = "absolute";
	obj.top = obj.initTop;
	obj.left = obj.initLeft;
	obj.style.top = obj.top + "px";
	obj.style.left = obj.left + "px";

	obj.getTop = function() {
		if (document.documentElement.scrollTop) {
			return document.documentElement.scrollTop;
		} else if (window.pageYOffset) {
			return window.pageYOffset;
		} else {
			return 0;
		}
	}
	obj.getHeight = function() {
		if (self.innerHeight) {
			return self.innerHeight;
		} else if(document.documentElement.clientHeight) {
			return document.documentElement.clientHeight;
		} else {
			return 500;
		}
	}
	obj.move = setInterval(function() {
		pos = obj.getTop() + obj.getHeight() / 2 - 15;

		if (pos > obj.bottomLimit)
			pos = obj.bottomLimit
		if (pos < obj.topLimit)
			pos = obj.topLimit

		interval = obj.top - pos;
		obj.top = obj.top - interval / 3;

		obj.style.top = obj.top + "px";
	}, 40)
}