// JavaScript Document

// resize flash container for product browser 

function flashResize(nHeight){
    
	nHeight += "px";
	targSwf = so1.getAttribute('id')
	document.getElementById(targSwf).style.height = nHeight;
}

//  Make list items look like links

function showHand(targ){
	targ.style.cursor='pointer';
}

function changeURL(urlTarg){
	document.location.href = urlTarg;
}

function hideShowCVCdiv(){
	var targ = document.getElementById('cvc');
	if(targ.className == 'showDisplay'){
		targ.className = 'hideDisplay';
	}else{
		targ.className = 'showDisplay';
	}
}

function getURL(){
	return window.location.hash;
}