function showInfoWindow(brand, widthIE, heightIE, widthOthers, heightOthers) {
	var isMinIE4 = (document.all) ? true : false;
     	if ( isMinIE4 ) {
        	document.write("<iframe name='cwindow' style='border:5 ridge #C0C0C0' width='" + widthIE + "' height='" + heightIE + "' src='info/" + brand + ".htm'></iframe>");
        } else {
		infoWindow=window.open("info/" + brand + ".htm", "" , "scrollbars=yes,toolbar=no,status=no,location=no,height=" + heightOthers + ",width=" + widthOthers + ",dependend=yes,menubar=no");    
	}
}