   // redirect for quick search
   	function quicksearch(menu) {
	   url=menu.navurl.value;
       window.location=url;
     }
	 
	// Create arrays for branding window
	if (document.images){
	var image = new Array();
	var clk = new Array();
	var cat="2"
	  for (var i=0; i<quotecat.length; i++) {
	     if (quotecat[i]=='1'){
		    image[i]="/images/content_services.gif";
			clk[i]="services.shtm";
		 }
	     if (quotecat[i]=='2'){
		    image[i]="/images/content_appdev.gif";
			clk[i]="appdev.shtm";
		 }
	     if (quotecat[i]=='3'){
		    image[i]="/images/content_managed.gif";
			clk[i]="managed.shtm";
		 }
	  }

	var flashvariables="";
	var quotes="";
	var quotenames="";
	var quotecats="";
	flashvariables+="cat=" + cat + "&";
	
	for (var i=0; i<quotecat.length; i++) {
	   quotes+= quote[i] + "~";
	   quotenames+= quotename[i] + "~";
	   quotecats+= quotecat[i] + "~";
	}
	flashvariables+="quotes=" + quotes + "end&";
	flashvariables+="quotenames=" + quotenames + "end&";
	flashvariables+="quotecats=" + quotecats + "end&";
    flashvariables+="quotelength=" + quotelength + "&";
	flashvariables+="textloaded=" + textloaded;
    //alert(flashvariables)
	
	var len=flashvariables.length;
	var newflash="";
	for (var i=0; i<=len; i++){
	  if (flashvariables.charAt(i) == " ") {
	      newflash+="+";
	  } else if (flashvariables.charAt(i) == "'") {
	      newflash+="%27";
	  } else if (flashvariables.charAt(i) == '"') {
	      newflash+="%22";
	  } else {
	      newflash+=flashvariables.charAt(i);
 	  }
	}
	
	//alert(newflash)
	
	function randomNum(max) {
       var rNum=NaN
       while (isNaN(rNum)) {
         rNum=Math.floor(Math.random()*(max))
       }
       return rNum
     }	
   	 var x = randomNum(quotecat.length);
	 if (cat!="0") {
	   while (quotecat[x] != cat) {
	      x = randomNum(quotecat.length);
	   }
	 }
	 
     var imgstrg = '<a href="' + clk[x] + '"><img src="' + image[x] + '" alt="" border="0" height="76"></a>'	 
<!--
var UseFlash = 0;
if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] ) {
	// Check for Flash version 5 or greater in Netscape
	var plugin = navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin;
	if (plugin && parseInt(plugin.description.substring(plugin.description.indexOf(".")-1))>=5)
		UseFlash = 1;
} else if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && 
	  navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	// Assume any Windows IE except for Windows 3.1 supports the OBJECT tag
	UseFlash = 1;
}

if ( UseFlash ) {
	// Use Flash player
	var quotestrg='<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';
	quotestrg+=' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"';
	quotestrg+=' ID=quotes WIDTH=491 HEIGHT=76>';
	quotestrg+='<PARAM NAME=movie VALUE="/images/quotes.swf?' + newflash + '"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#336699> ';
	quotestrg+='<EMBED src="/images/quotes.swf?' + newflash + '" quality=high bgcolor=#336699 name=quotes';
//	quotestrg+='<PARAM NAME=movie VALUE="/images/quotes.swf?' + newflash + '"> <PARAM NAME=FlashVars VALUE="' + newflash + '"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#336699> ';
//	quotestrg+='<EMBED src="/images/quotes.swf?' + newflash + '" quality=high FlashVars="' + newflash + '" bgcolor=#336699 name=quotes';

	quotestrg+=' swLiveConnect=true WIDTH=491 HEIGHT=76';
	quotestrg+=' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">';
	quotestrg+='</EMBED>';
	quotestrg+='</OBJECT>';
} else {
	var quotestrg ='<table border="0" width="491" cellpadding="0" cellspacing="0">';
	quotestrg+='<tr bgcolor="#336699">';
	quotestrg+='<td width="10" height="76">';
	quotestrg+='<img src="/images/pixel_336699.gif" border="0" width="10" height="76" alt="data 3 corporation, business services, application development, managed hosting"><br>';
	quotestrg+='</td>';
	quotestrg+='<td width="310" height="76" valign="middle">';
	quotestrg+='<font class="quotecopycon">' + quote[x] + '</font><font class="quotenamecopycon"><br>' + quotename[x] + '</font>';
    quotestrg+='</td>';
	quotestrg+='<td width="171" height="76" align="right" valign="top">';
	quotestrg+=imgstrg;
	quotestrg+='</td>';
	quotestrg+='</tr>';
	quotestrg+='</table>';
}
//-->	


	}
//

