   
function openWindow(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2; 
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+''
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); 
	}
}

function rollover(obj) 
{
	obj.src = Left(obj.src, obj.src.length-5) + '1.gif';
}

function rollout(obj) 
{
	obj.src = Left(obj.src, obj.src.length-5) + '0.gif';
}

function rolloverjpg(obj) 
{
	obj.src = Left(obj.src, obj.src.length-5) + '1.jpg';
}

function rolloutjpg(obj) 
{
	obj.src = Left(obj.src, obj.src.length-5) + '0.jpg';
}

function Left(str, n)
{
	if (n <= 0)
		return "";
	else if (n > String(str).length)
		return str;
	else
		return String(str).substring(0,n);
}

function Right(str, n)
{
	if (n <= 0)
	return "";
	else if (n > String(str).length)
	return str;
	else {
	var iLen = String(str).length;
	return String(str).substring(iLen, iLen - n);
	}
}

function getEmailAssist() 
{
    var mailto = "mailto:clientes@microsoft.com?subject=Pedido%20de%20Contacto:%20Comunica%e7%f5es%20Unificadas&cc=ucpt@microsoft.com&body=Por%20favor,%20preencha%20o%20question%e1rio%20abaixo%20para%20ser%20contactado%20por%20um%20dos%20nossos%20assistentes.%0a%0aNome:%0a%0aApelido:%0a%0aEmpresa:%0a%0aFun%e7%e3o:%0a%0aPa%eds:%0a%0aTelefone:%0a%0aEndere%e7o%20de%20Email:%0a%0aQual%20a%20sua%20rela%e7%e3o%20com%20a%20Microsoft?%20(Cliente%2fParceiro)%0a%0aDetalhe%20o%20seu%20pedido:%0a%0a";    
    win = window.open(mailto,'emailWindow'); 
    if (win && win.open &&!win.closed) win.close();
}

function getEmailContacto(subject) 
{
    var sub = subject;
    if (subject == "consultoria") sub = "|%20Servi%e7o%20Gratuito%20de%20Consultoria";
    var mailto = "mailto:ucpt@microsoft.com?subject=Pedido%20de%20Contacto:%20Comunica%e7%f5es%20Unificadas%20" + sub + "&body=Por%20favor,%20preencha%20o%20question%e1rio%20abaixo%20para%20ser%20contactado%20pela%20Microsoft.%0a%0aNome:%0a%0aApelido:%0a%0aEmpresa:%0a%0aFun%e7%e3o:%0a%0aN%famero%20de%20postos%20de%20trabalho:%0a%0aPa%eds:%0a%0aTelefone:%0a%0aEndere%e7o%20de%20Email:%0a%0aQual%20a%20sua%20rela%e7%e3o%20com%20a%20Microsoft?%20(Cliente%2fParceiro)%0a%0aDetalhe%20o%20seu%20pedido:%0a%0a";
    win = window.open(mailto,'emailWindow'); 
    if (win && win.open &&!win.closed) win.close();
}

function getEmailContactoMicro(to,cc, subject, partner) 
{
    var sub = subject;
    if (subject == "consultoria") sub = "|%20Servi%e7o%20Gratuito%20de%20Consultoria";
    var mailto = "mailto:"+to+"?cc="+cc+";ucpt@microsoft.com&subject=Pedido%20de%20Contacto:%20Comunica%e7%f5es%20Unificadas%20" + sub + "&body=Por%20favor,%20preencha%20o%20question%e1rio%20abaixo%20para%20ser%20contactado%20pela%20"+partner+".%0a%0aNome:%0a%0aApelido:%0a%0aEmpresa:%0a%0aFun%e7%e3o:%0a%0aN%famero%20de%20postos%20de%20trabalho:%0a%0aPa%eds:%0a%0aTelefone:%0a%0aEndere%e7o%20de%20Email:%0a%0aQual%20a%20sua%20rela%e7%e3o%20com%20a%20"+partner+"?%20(Cliente%2fParceiro)%0a%0aDetalhe%20o%20seu%20pedido:%0a%0a";
    win = window.open(mailto,'emailWindow'); 
    if (win && win.open &&!win.closed) win.close();
}

/******fade effect ********/
var FadeInStep 	= 20;
var FadeOutStep 	= 20;

document.write('<STYLE TYPE="text/css">.imgFader{ position:relative; filter:alpha(opacity=0); -moz-opacity:0.0 }</STYLE>');

if(!window.JSFX)
	JSFX=new Object();

JSFX.RolloverObjects=new Array();

JSFX.Rollover = function(name, img)
{
	JSFX.RolloverObjects[name]=new Image();
	JSFX.RolloverObjects[name].img_src = img;	
	if(!JSFX.Rollover.postLoad)
		JSFX.RolloverObjects[name].src = img;
}
JSFX.Rollover.postLoad = false;
JSFX.Rollover.loadImages = function()
{
	var i;
	for(i in JSFX.RolloverObjects)
	{
		r=JSFX.RolloverObjects[i];
		r.src=r.img_src;
	}
}
JSFX.Rollover.error = function(n)
{
		/*alert("JSFX.Rollover - An Error has been detected\n"
			+ "----------------------------------\n"
			+ "You must define a JSFX.Rollover in your document\n"
			+ "JSFX.Rollover(\""+n+"\",\"your_on_img.gif\")\n"
			+ "(check the spelling of your JSFX.Rollovers)");*/
}
/*******************************************************************
* Function    : getImg
* Description : In Netscape 4 images could be in layers so we might
*		    have to recurse the layers to find the image
*****************************************************************/
JSFX.getImg = function(n, d) 
{
	var img = d.images[n];
	if(!img && d.layers)  
		for(var i=0 ; !img && i<d.layers.length ; i++)
			img=JSFX.getImg(n,d.layers[i].document);
	return img;
}
/*******************************************************************
* Function    : findImg
* Description : gets the image from the document and reports an
*		    error if it cannot find it.
*****************************************************************/
JSFX.findImg = function(n, d) 
{
	var img = JSFX.getImg(n, d);

	/*** Stop emails because the image was named incorrectly ***/
	if(!img)
	{
		/*alert("JSFX.findImg - An Error has been detected\n"
			+ "----------------------------------\n"
			+ "You must define an image in your document\n"
			+ "<IMG SRC=\"your_image.ext\" NAME=\""+n+"\">\n"
			+ "(check the NAME= attribute of your images)");*/

		return(new Image());
	}
	return img;
}

JSFX.ImageFadeRunning=false;
JSFX.ImageFadeInterval=30;

/*******************************************************************
* Function    : imgFadeIn
* Description : This function is based on the turn_on() function
*		      of animate2.js (animated rollovers from www.roy.whittle.com).
*		    Each image object is given a state. 
*			OnMouseOver the state is switched depending on the current state.
*			Current state -> Switch to
*			null		->	OFF.
*			OFF		->	FADE_IN
*			FADE_OUT	->	FADE_IN
*			FADE_OUT	->	FADE_OUT_IN (if the new image is different)
*			FADE_IN_OUT->	FADE_IN (if the image is the same)
*****************************************************************/
JSFX.imgFadeIn = function(img, imgSrc)
{
	if(img) 
	{
		if(img.state == null) 
		{
			img.state = "OFF";
			img.index = 0;
			img.next_on    = null;
		}

		if(img.state == "OFF")
		{
			/*** Vers 1.7 only load the ON image once ever ***/
			if(img.src.indexOf(imgSrc) == -1)
				img.src=imgSrc;

			img.currSrc = imgSrc;
			img.state = "FADE_IN";
			JSFX.startFading();
		}
		else if( img.state == "FADE_IN_OUT"
			|| img.state == "FADE_OUT_IN"
			|| img.state == "FADE_OUT")
		{
			if(img.currSrc == imgSrc)
				img.state = "FADE_IN";
			else
			{

				img.next_on = imgSrc;
				img.state="FADE_OUT_IN";
			}
		}
	}
}
/*******************************************************************
* Function    : imgFadeOut
* Description : This function is based on the turn_off function
*		      of animate2.js (animated rollovers from www.roy.whittle.com).
*		      Each image object is given a state. 
*			OnMouseOut the state is switched depending on the current state.
*			Current state -> Switch to
*			ON		->	FADE_OUT.
*			FADE_IN	->	FADE_IN_OUT.
*			FADE_OUT_IN	->	FADE_IN. (after swapping to the next image)
*****************************************************************/
JSFX.imgFadeOut = function(img)
{
	if(img)
	{
		if(img.state=="ON")
		{
			img.state="FADE_OUT";
			JSFX.startFading();
		}
		else if(img.state == "FADE_IN")
		{
			img.state="FADE_IN_OUT";
		}
		else if(img.state=="FADE_OUT_IN")
		{
			img.next_on == null;
			img.state = "FADE_OUT";
		}
	}
}
/*******************************************************************
* Function    : startFading
* Description : This function is based on the start_animating() function
*	        	of animate2.js (animated rollovers from www.roy.whittle.com).
*			If the timer is not currently running, it is started.
*			Only 1 timer is used for all objects
*****************************************************************/
JSFX.startFading = function()
{
	if(!JSFX.ImageFadeRunning)
		JSFX.ImageFadeAnimation();
}

/*******************************************************************
* Function    : ImageFadeAnimation
* Description : This function is based on the Animate function
*		    of animate2.js (animated rollovers from www.roy.whittle.com).
*		    Each image object has a state. This function
*		    modifies each object and (possibly) changes its state.
*****************************************************************/
JSFX.ImageFadeAnimation = function()
{
	JSFX.ImageFadeRunning = false;
	for(i=0 ; i<document.images.length ; i++)
	{
		var img = document.images[i];
		if(img.state)
		{
			if(img.state == "FADE_IN")
			{
				img.index+=FadeInStep;

				if(img.index > 100)
					img.index = 100;

				if(img.filters)
					img.filters.alpha.opacity = img.index;
				else
					img.style.MozOpacity = img.index/101;

				if(img.index == 100)
					img.state="ON";
				else
					JSFX.ImageFadeRunning = true;
			}
			else if(img.state == "FADE_IN_OUT")
			{
				img.index+=FadeInStep;
				if(img.index > 100)
					img.index = 100;

				if(img.filters)
					img.filters.alpha.opacity = img.index;
				else 
					img.style.MozOpacity = img.index/101;

	
				if(img.index == 100)
					img.state="FADE_OUT";

				JSFX.ImageFadeRunning = true;
			}
			else if(img.state == "FADE_OUT")
			{
				img.index-=FadeOutStep;
				if(img.index < 0)
					img.index = 0;

				if(img.filters)
					img.filters.alpha.opacity = img.index;
				else
					img.style.MozOpacity = img.index/101;


				if(img.index == 0)
					img.state="OFF";
				else
					JSFX.ImageFadeRunning = true;
			}
			else if(img.state == "FADE_OUT_IN")
			{
				img.index-=FadeOutStep;
				if(img.index < 0)
					img.index = 0;

				if(img.filters)
					img.filters.alpha.opacity = img.index;
				else
					img.style.MozOpacity = img.index/101;

				if(img.index == 0)
				{
					img.src = img.next_on;
					img.currSrc = img.next_on;
					img.state="FADE_IN";
				}
				JSFX.ImageFadeRunning = true;
			}
		}
	}
	/*** Check to see if we need to animate any more frames. ***/
	if(JSFX.ImageFadeRunning)
		setTimeout("JSFX.ImageFadeAnimation()", JSFX.ImageFadeInterval);
}
/*******************************************************************
* Function    : hasOpacity
* Description : Tests if the browser allows Opacity
*****************************************************************/
JSFX.hasOpacity = function(obj)
{
	if(document.layers)
		return false;

	if(window.opera)
		return false;

	if(navigator.userAgent.toLowerCase().indexOf("mac") != -1)
		return false;

	return true;
}
/*******************************************************************
* Function    : fadeIn /fadeOut
* Description : Detects browser that can do opacity and fades the images
*		    For browsers that do not support opacity it just does an image swap.
*		    For these functions to work you need to name the image
*			e.g. for an image named "home" you need
*			<IMG .... NAME="home">
*		    and you need 2 images, the on and the off image
*****************************************************************/
JSFX.fadeIn = function(imgName, rollName)
{
	if(rollName == null)
		rollName=imgName;

	/*** Stop emails because the rollover was named incorrectly ***/
	if(!JSFX.RolloverObjects[rollName])
	{
		JSFX.Rollover.error(rollName);
		return;
	}

	var img = JSFX.findImg(imgName, document);
	if(JSFX.hasOpacity(img))
		JSFX.imgFadeIn(img, JSFX.RolloverObjects[rollName].img_src);
	else
	{
		if(img.offSrc==null)
			img.offSrc=img.src;
		img.src=JSFX.RolloverObjects[rollName].img_src;
	}
}
JSFX.fadeOut = function(imgName)
{
	var img = JSFX.findImg(imgName, document);
	if(JSFX.hasOpacity(img))
		JSFX.imgFadeOut(img);
	else
		img.src=img.offSrc;
}
/*******************************************************************
* Function    : imgOn /imgOff
* Description : Included these functions so you can mix simple and
*		    fading rollovers without having to include 2 ".js" files
*****************************************************************/
JSFX.imgOn = function(imgName, rollName)
{
	if(rollName == null)
		rollName=imgName;

	/*** Stop emails because the rollover was named incorrectly ***/
	if(!JSFX.RolloverObjects[rollName])
	{
		JSFX.Rollover.error(rollName);
		return;
	}
	var img = JSFX.findImg(imgName,document);
	if(img.offSrc==null)
		img.offSrc=img.src;
	img.src=JSFX.RolloverObjects[rollName].img_src;
}
JSFX.imgOff = function(imgName)
{
	var img = JSFX.findImg(imgName,document);
	img.src=img.offSrc;
}