theDate= new Date();
var day = theDate.getDate();
var year = theDate.getYear();
year = (year < 2000) ? year + 1900 : year;
var textdate = (theDate.getMonth() + 1) + '/' + theDate.getDate() + '/' + year;

// ********************************************
// Victor Solanoy

// ********************************************
// Script: makeQuote_vbs.js.?????

var core = 0
var currentdate = 0

function randomizer (quote) {
	var num = quote.length;
	var randomnumber=Math.round(Math.random()* num);
	return quote[randomnumber];
}

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}
// ********************************************

var numquotes = 2;
//quotes = new Array(numquotes+1);
quotes = new StringArray(numquotes);

quotes[0]='<P><a class="QUOTE-TEXT" HREF="/products/design_resources/proc_central/index.htm">“It is inspiring to see that Platform Studio is being recognized in this way. The platform approach to next-generation embedded systems will become the only viable solution to meet the economic and technological challenges of the future. Xilinx continues to prove its undeniable leadership in developing world-class technologies that make FPGAs a compelling system platform for an expanding range of embedded processing applications.”<BR><BR><I>Jerry Worchel, Principal Analyst, In-Stat/MDR</I></a><BR></P>'; //quote0end

quotes[1]='<P><a class="QUOTE-TEXT" HREF="/products/design_resources/proc_central/index.htm">“We are very excited about the new Virtex-4 FX family of devices, where the higher performance processor and integrated APU will allow us to rapidly create hardware modules for accelerating specific software functions. By leveraging these capabilities with the integrated EMAC cores and enhanced RocketIO available in the Virtex-4 FX devices, our next generation systems will further widen the distance between us and our competition.”<BR><BR><I>Roger Smith, Chief Engineer, Echolab</I></a><BR></P>'; //quote1end

quotes[2]='<P><a class="QUOTE-TEXT" HREF="/products/design_resources/proc_central/index.htm">“Leveraging a high degree of IP design re-use developed with our first Virtex-II Pro based system, we can rapidly migrate our high performance storage networking architecture to the Virtex-4 FX family of devices. By utilizing many of the FX features, we are able to increase both functionality and performance while reducing system cost.”<BR><BR><I>Sandy Helton, Chief Technology Officer, SAN Valley Systes </I></a><BR></P>'; //quote2end

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


function makeQuoteList() {
   var msg =  '<HTML>\n<HEAD>\n<TITLE>Quote Script: embedded</TITLE>\n<link rel="stylesheet" href="/bvdocs/css/main_eng.css" type="text/css">\n</HEAD>\n<BODY>\n<TABLE BORDER="1" CELLPADDING="3">\n';
       msg +=  "<TR>\n<TD>1.) " + quotes[0]+ "</TD>\n</TR>\n";
       msg +=  "<TR>\n<TD>2.) " + quotes[1]+ "</TD>\n</TR>\n";
       msg +=  "<TR>\n<TD>3.) " + quotes[2]+ "</TD>\n</TR>\n";
       msg +=  "</TABLE>\n</BODY>\n</HTML>";

       document.open();
       document.write(msg);
       document.close();
}
