<!--
// Code to pop up the images in FF

function popUpTopLeft()
{
	
	window.open("http://st.sand.msn-int.com/br/dd/fiatqubo/images/JM_12.jpg","popupwindow","width=587,height=398,scrollbars=no,toolbar=no,menubar=no,resizable=no");
	
}

function popUpTopRight()
{
	
	window.open("http://st.sand.msn-int.com/br/dd/fiatqubo/images/JM_6.jpg", "popupwindow", "width=587,height=398,scrollbars=no,toolbar=no,menubar=no,resizable=no");
}

function popUpBottomLeft()
{
	
	window.open("http://st.sand.msn-int.com/br/dd/fiatqubo/images/JM_11.jpg", "popupwindow", "width=587,height=445,scrollbars=no,toolbar=no,menubar=no,resizable=no");
}

function popUpBottomRight()
{
	
	window.open("http://st.sand.msn-int.com/br/dd/fiatqubo/images/JM_4.jpg", "popupwindow", "width=398,height=587,scrollbars=no,toolbar=no,menubar=no,resizable=no");
}

// Code to modify the DOM. For IE we insert the rel tags for lightbox  for FF we insert the onclick attributes to point to the above functions.

var obj0 = document.getElementById('TopLeftJamesLink');
if(obj0!=null) 
{
	
	if (navigator.appName != 'Microsoft Internet Explorer')
	{ // e.g. Firefox, Opera, Safari
	        obj0.href="javascript:void(0)";
        	obj0.setAttribute("onclick", "popUpTopLeft();");
	}
	else
	{ // e.g. Internet Explorer (also would work on Opera)
	        obj0.setAttribute("rel", "lightbox[1]");
	}

}

var obj1= document.getElementById('TopRightJamesLink');
if(obj1!=null) 
{
	
	if (navigator.appName != 'Microsoft Internet Explorer')
	{ // e.g. Firefox, Opera, Safari
	        obj1.href="javascript:void(0)";
        	obj1.setAttribute("onclick", "popUpTopRight();");
	}
	else
	{ // e.g. Internet Explorer (also would work on Opera)
	        obj1.setAttribute("rel", "lightbox[1]");
	}

}

var obj2= document.getElementById('BottomLeftJamesLink');
if(obj2!=null)
{
	
	if (navigator.appName != 'Microsoft Internet Explorer')
	{ // e.g. Firefox, Opera, Safari
	        obj2.href="javascript:void(0)";
        	obj2.setAttribute("onclick", "popUpBottomLeft();");
	}
	else
	{ // e.g. Internet Explorer (also would work on Opera)
	        obj2.setAttribute("rel", "lightbox[1]");
	}

}

var obj3= document.getElementById('BottomRightJamesLink');
if(obj3!=null) 
{
	
	if (navigator.appName != 'Microsoft Internet Explorer')
	{ // e.g. Firefox, Opera, Safari
	        obj3.href="javascript:void(0)";
        	obj3.setAttribute("onclick", "popUpBottomRight();");
	}
	else
	{ // e.g. Internet Explorer (also would work on Opera)
	        obj3.setAttribute("rel", "lightbox[1]");
	}

}

document.writeln('<script type="text/javascript" src="http://st.sand.msn-int.com/br/dd/fiatqubo/js/prototype.js"></script>');
document.writeln('<script type="text/javascript" src="http://st.sand.msn-int.com/br/dd/fiatqubo/js/scriptaculous.js?load=effects,builder"></script>');
document.writeln('<script type="text/javascript" src="http://st.sand.msn-int.com/br/dd/fiatqubo/js/lightbox.js"></script>');

document.writeln('<link rel="stylesheet" href="http://st.sand.msn-int.com/br/dd/fiatqubo/css/lightbox.css" type="text/css" media="screen" />');

-->