function SwapImg(img1,ref1) {
	if (document.images) {
		document.images[img1].src = ref1;
	}
}

function SwapBGColor(fnItem, fnColor) {
	fnItem.style.backgroundColor=fnColor;
}

function SwapClass(fnItem, fnClass) {
	fnItem.className=fnClass;
}

//Function to hover file item
function overIcon(iconItem) {
	iconItem.style.backgroundColor='#CCCCCC';
}

//Function to moving off file item
function outIcon(iconItem) {
	iconItem.style.backgroundColor='#FFFFFF';
}

//Function for mouseover of table row or cell with icon
function HoverArea(fnItem, fnTyp, fnColor, fnImg) {
	if (fnTyp=='C') {
		fnItem.style.backgroundColor=fnColor;
	} else if (fnTyp=='I') {
		fnItem.style.backgroundimage='url(' + fnImg + ')';
	}
}
// this.style.backgroundimage='url(/Images/Store/Img_Accessories_On.jpg)';???
// HoverArea(this,'I','','/Images/Store/Img_Accessories_On.jpg');