// JavaScript Document
//OVER BUTTON
var strRootPath
function RooPath(Root)
{
 strRootPath=Root
return Root;
}

function Mouseover(that)
{

that.style.backgroundImage='url('+ strRootPath +'/img_banner/B_Brown.gif)';

//that.style.backgroundRepeat='no-repeat';
//that.style.color='#FF3300';
//that.style.fontWeight='bold';
//that.style.border='0px inset #DDDDDD';
//that.style.filter='progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#ffffff,EndColorStr=#c9c9c9)';
}
function Mouseout(that)
{
if (that.clicked=="1")
that.style.backgroundImage='url('+ strRootPath +'/img_banner/B_Brown.gif)';
else
that.style.backgroundImage='url('+ strRootPath +'/img_banner/B_Blue.gif)';

//that.style.backgroundRepeat='no-repeat';
//that.style.backgroundColor='#98BA2C';
//that.style.color='#333333';
//that.style.filter='progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#c9c9c9,EndColorStr=#ffffff)';
//that.style.fontWeight='bold';
//that.style.border='0px solid #98BA2C';
}

//3-state Highlight menu effect script: By Dynamicdrive.com
//For full source, Terms of service, and 100s DTHML scripts
//Visit http://www.dynamicdrive.com

function over_effect(e,state){
if (document.all)
source4=event.srcElement
else if (document.getElementById)
source4=e.target
if (source4.className=="menulines")
source4.style.borderStyle=state
else{
while(source4.tagName!="TABLE"){
source4=document.getElementById? source4.parentNode : source4.parentElement
if (source4.className=="menulines")
source4.style.borderStyle=state
}
}
}

function openWinNews(vLink, vName, vHeight, vWidth)
{
	
	winDef = 'status=no,resizable=no,scrollbars=no,toolbar=no,location=no,fullscreen=no,titlebar=no,height='.concat(vHeight).concat(',').concat('width=').concat(vWidth).concat(',');
	winDef = winDef.concat('top=').concat((screen.height - vHeight)/2).concat(',');
	winDef = winDef.concat('left=').concat((screen.width - vWidth)/2);
	newwin = open(vLink, vName, winDef);
}


