function toggleInfo(target) {
	var current = document.getElementById(target);
	if(current.style.display == "block") {
		current.style.display = "none";
	} else {
		current.style.display = "block";
	}
}

function expandInfo(targetAnswer, targetQuestion) {
	var current = document.getElementById(targetAnswer);
	var current2 = document.getElementById(targetQuestion);
	current.style.display = "block";
	current2.style.display = "none";
}

function collapseInfo(targetAnswer, targetQuestion) {
	var current = document.getElementById(targetAnswer);
	var current2 = document.getElementById(targetQuestion);
	current.style.display = "none";
	current2.style.display = "block";
}

function openWin( windowURL, windowName, windowFeatures ) { 
	return window.open( windowURL, windowName, windowFeatures ) ; 
} 

function openDetails( systemName)
{
	var a = "http://www.adkvideoediting.com/" + systemName + ".asp"
	window.location = a
}

function gotoConfigurator (systemNumber)
{
	var a = "http://www.adkvideoediting.com/systems/viewsystem.cfm?recordid=" + systemNumber;	
	window.location = a;
}

function gotoBuy ()
{
	var a = "http://www.adkvideoediting.com/addtocart2test.cfm";
	window.location = a;
}
