function AutoCorrect ( )
{
	var browserName=navigator.appName ; 
	var reviewButtonDiv = document.getElementById ( "reviewButton" ) ;

	if ( browserName=="Netscape" )
	{ 
		//You would put code here in order to perform tasks specific to Netscape
	}

	else if ( browserName=="Firefox" )
	{ 
		//You would put code here in order to perform tasks specific to Firefox
	}

	else if ( browserName=="Microsoft Internet Explorer" )
	{ 
		reviewButtonDiv.innerHTML = "<br /><br /><?php echo <a href="' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . \'">' + " . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>' ; ?>" ; 
	}
}