function getMyPicOn(iIndex,pImgName)
{
	if(document.images)
		document.images[iIndex].src=eval(pImgName +".src");
}

function getMyPicOff(iIndex,pImgName)
{
	if(document.images)
		document.images[iIndex].src=eval(pImgName +".src");
}


function onTblOver(item)
{
	item.bgColor="#7F7F7F";
}

function onTblOut(item)
{
	item.bgColor="#000000";
}

function openWindow(url,name,width,height,statusbar,resizable,scrollbars)
{
	var options="";
	var bStatusbar,bResizable,bScrollbars;
	
	if(statusbar==0)
		bStatusbar=0;
	else
		bStatusbar=1;
	
	if(resizable==0)
		bResizable=0;
	else
		bResizable=1;
	
	if(scrollbars==0)
		bScrollbars=0;
	else
		bScrollbars=1;
	
	options="menubar=0,toolbar=0,location=0,status="+ bStatusbar +",scrollbars="+ bScrollbars +",resizable="+ bResizable +",width="+ width +",height="+ height;
	
	window.open(url,name,options);
}