
<!--
function OpenFloat(theURL) {

floating=window.open(theURL,'floating','toolbar=no,resizable=yes,scrollbars=yes,width=700,height=490');

  window.floating.focus();
}
//Random link plus text description script
//specify total # of random links
var totallinks=2
var urls=new Array(totallinks)
var descriptions=new Array(totallinks)
var titles=new Array(totallinks)


urls[0]="http://www.vizax.com/forms/form_training.html"
descriptions[0]="Sign up for live a training session with a Certified Trainer."
titles[0]="<b>Live Training</b>"

urls[1]="http://www.vizax.com/webinar"
descriptions[1]="Join us for a free product demonstration webinar."
titles[1]="<b>Free Product Demonstration</b>"

var RandomLinks=Math.floor(Math.random()*totallinks)
var cont=titles[RandomLinks]+"<p>"+descriptions[RandomLinks];
cont+="<p><a class=link href=javascript:OpenFloat('"+urls[RandomLinks]+"');>"
+"Click Here for Details</a></p>"
-->
