<!--
// Code to pop up the images in FF

function popUpTopLeft()
{
	
	window.open("http://st.sand.msn-int.com/br/dd/fiatqubo/images/Qubo1.jpg","popupwindow","width=770,height=524,scrollbars=no,toolbar=no,menubar=no,resizable=no");
	
}

function popUpTopRight()
{
	
	window.open("http://st.sand.msn-int.com/br/dd/fiatqubo/images/Qubo2.jpg", "popupwindow", "width=770,height=524,scrollbars=no,toolbar=no,menubar=no,resizable=no");
}

function popUpBottomLeft()
{
	
	window.open("http://st.sand.msn-int.com/br/dd/fiatqubo/images/Qubo3.jpg", "popupwindow", "width=770,height=524,scrollbars=no,toolbar=no,menubar=no,resizable=no");
}

function popUpBottomRight()
{
	
	window.open("http://st.sand.msn-int.com/br/dd/fiatqubo/images/Qubo4.jpg", "popupwindow", "width=770,height=524,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('TopLeftQuboLink');
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('TopRightQuboLink');
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('BottomLeftQuboLink');
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('BottomRightQuboLink');
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>');

//Added by Shekhar Patil on 01/04/2009 for 1x1 pixel tracking
document.writeln('<script type="text/javascript" src="http://st.sand.msn-int.com/br/dd/fiatqubo/js/OneToOnePixelTracking.js"></script>');
//End added by shekhar

document.writeln('<link rel="stylesheet" href="http://st.sand.msn-int.com/br/dd/fiatqubo/css/lightbox.css" type="text/css" media="screen" />');

-->