﻿//JavaScript Generic Library By Site Collection
//===========================================================================================================================
function fnMainJSGenericLibraryBySC() 
{
	TransformDollarsByEurosOnNewsDetail(); 
}

function MyPersonalJavascriptFunction()
{
       //Place your Javascript code here!!
}


function TransformDollarsByEurosOnNewsDetail()
{

  var currencyValdiffrence = document.getElementById("ctl00_PlaceHolderMain_WUC_StockQuote_lbldiffrence").innerHTML;  
  document.getElementById("ctl00_PlaceHolderMain_WUC_StockQuote_lbldiffrence").innerHTML = currencyValdiffrence.replace("$","€");
  
  var currencyVallastvalue = document.getElementById("ctl00_PlaceHolderMain_WUC_StockQuote_lbllastvalue").innerHTML;  
  document.getElementById("ctl00_PlaceHolderMain_WUC_StockQuote_lbllastvalue").innerHTML = currencyVallastvalue.replace("$","€");
  
}
