/*ImageSite.js 
* Copyright (c) 2002 by eQuorum Corp.
* Contains Help opener script and main ImageSite button scripts
*
* history:
*   07 Jun 2006 ras - I20060146, add ActivateApplet(sText)
*
* Copyright 2003-2006, eQuorum Corporation
*/

// fix for the eolas fubar
// called with text containing applet text, without params
//
function ActivateApplet( sText )
{   document.write(sText);
}

function OpenHelpWindow(url,name,features)
{helpwindow=window.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=850,height=680');	
	}	
function OpenGetStartedWindow(url,name,features)
{helpwindow=window.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=1000,height=750');	
	}	

function OpenAboutWindow(url,name,features) 
{aboutwindow=window.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=340,height=235');
	}

function mouseoverbtnmaintab(obj) {
	obj.style.color='black', obj.style.backgroundcolor='#319cc6', obj.style.cursor='pointer';	
	}

function mouseoutbtnmaintab(obj) {
	obj.style.color='white', obj.style.backgroundColor='#319cc6';	
	}

function mouseoverbtntree(obj) {
	obj.style.color='black', obj.style.backgroundcolor='#319cc6', obj.style.cursor='pointer';	
	}

function mouseoutbtntree(obj) {
	obj.style.color='white', obj.style.backgroundColor='#319cc6';	
	}

function mouseoverbtnfbtab(obj)  {	
obj.style.color='white', obj.style.backgroundColor='#006394', obj.style.cursor='pointer';	
	}	
			
function mouseoutbtnfbtab(obj) {
	obj.style.color='#006394', obj.style.backgroundColor='#dedede';
 	}	

function mouseoverbtnprojtab(obj) {
	obj.style.color='#006694', obj.style.backgroundColor='#cccccc', obj.style.borderColor='black black black white', obj.style.cursor='pointer';
	}

function mouseoutbtnprojtab(obj) {
	obj.style.color='#c6ffff', obj.style.backgroundColor='#00004a', obj.style.borderColor='white white white white';
	}


			

