/*
	Copyright 2007 Lee S. Barney
	
	
    This file is part of QuickConnectWeb.

    QuickConnectWeb is free software: you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    QuickConnectWeb is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with QuickConnectWeb.  If not, see <http://www.gnu.org/licenses/>.
 */
 
var curView = null;
 function displayViewVCF(results, parameters){
   if(curView){
      curView.style.opacity = 0;
      curView.style.left = '-1000px';
   }
   var newView = document.getElementById(parameters[0]+'View');
   newView.style.left = '150px';
   newView.style.opacity = 1;
   curView = newView;
 }