function showDriver() {
   var total = arrDriver.length;
   var index = Math.floor(Math.random()*total);
   var arrContent = arrDriver[index];
   var text = arrContent[0];
   var linktext = arrContent[1];
   var linkurl = arrContent[2];
   var linktarget = arrContent[3];
   document.write("<p>"+text+"</p>");
   if (linkurl != "") {
      if (linktext == "") { linktext = "Read More"; }
      if (linktarget != "") { 
         linktarget = " target=\"" + linktarget + "\""; 
      }
      document.write("<p><a href=\"" + linkurl + "\"" + linktarget + ">" + linktext + "</a></p>");
   }
}
function open_Window(url,win_name) { 
  popupWin = window.open(url, win_name, 'toolbar=no, scrollbars=yes,width=700,height=500,left=25,top=25'); 
  if (popupWin.opener == null) popupWin.opener = window; 
  popupWin.opener.name = "myWindow"; 
  popupWin.window.focus(); 
}
function openWindowResize(windowURL,windowName,windowWidth,windowHeight,scroll,center) {
	newWindow = window.open(windowURL,windowName,'width='+windowWidth+',height='+windowHeight+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollbars='+scroll+',resizable=1');
	newWindow.focus();
	if (center) {
	newWindow.moveTo((screen.width-windowWidth)/2,(screen.height-windowHeight)/2)
	}
}

