
function links_Set(linkObj,linkColor){
	document.getElementById(linkObj).style.color = linkColor;
}
function links_Set2(linkObj,linkColor,bkgColor,bWidth){
	document.getElementById(linkObj).style.color = linkColor;
	document.getElementById(linkObj).style.backgroundColor = bkgColor;
	document.getElementById(linkObj).style.borderWidth = bWidth;
}


function links_SetV(linkObj,linkColor){
	document.getElementById(linkObj).style.color = linkColor;

	var navLinksH = Array ("Commercials","Demos","Documentaries","Industrials","Specialties");

	for(var y = 0; y < 5; y++){
		document.getElementById('vH_' + navLinksH[y]).style.display = 'none';
		document.getElementById('vHs_' + navLinksH[y]).style.display = 'none';
	}

	document.getElementById('vH_' + linkObj).style.display = 'block';
	document.getElementById('vHs_' + linkObj).style.display = 'block';
}


function location_func(t_sec,t_item,yloc,t_x,t_y,t_w,t_h){
	location = 'video.php?section=' + t_sec + '&item=' + t_item + '&yloc=' + yloc + '&x=' + t_x + '&y=' + t_y + '&width=' + t_w + '&height=' + t_h ;
}

function location_forGenLinks(link){
	location = link;
}
