function determineObject(targetOBJ) {
	var element = null;
	if(document.all) {
		element = document.all[targetOBJ];
	}
	if (document.getElementById) {
		element = document.getElementById(targetOBJ);
	}
	return element;
}
function pickArticle() {
	var article = window.location.search.substring(1);
	if(article != "") {
		showPanel(article, '');
	}
}
function showPanel3(targetOBJ, targetBTN) {
	var target = determineObject(targetOBJ);
	var content1 = determineObject('nod32buy');
	var content2 = determineObject('nod32renew');
	content1.setAttribute("class", "invisible");
	content1.setAttribute("className", "invisible");
	content2.setAttribute("class", "invisible");
	content2.setAttribute("className", "invisible");
	target.setAttribute("class", "visible");
	target.setAttribute("className", "visible");
	return true;
}

function showPanel5(targetOBJ, targetBTN) {
	var target = determineObject(targetOBJ);
	var content1 = determineObject('nod32businessbuy');
	var content2 = determineObject('nod32businessrenew');
	content1.setAttribute("class", "invisible");
	content1.setAttribute("className", "invisible");
	content2.setAttribute("class", "invisible");
	content2.setAttribute("className", "invisible");
	target.setAttribute("class", "visible");
	target.setAttribute("className", "visible");
	return true;
}

function showPanel6(targetOBJ, targetBTN) {
	var target = determineObject(targetOBJ);
	var content1 = determineObject('ssbuy');
	var content2 = determineObject('ssrenew');
	content1.setAttribute("class", "invisible");
	content1.setAttribute("className", "invisible");
	content2.setAttribute("class", "invisible");
	content2.setAttribute("className", "invisible");
	target.setAttribute("class", "visible");
	target.setAttribute("className", "visible");
	return true;
}

function showPanel8(targetOBJ, targetBTN) {
	var target = determineObject(targetOBJ);
	var content1 = determineObject('ssbusinessbuy');
	var content2 = determineObject('ssbusinessrenew');
	content1.setAttribute("class", "invisible");
	content1.setAttribute("className", "invisible");
	content2.setAttribute("class", "invisible");
	content2.setAttribute("className", "invisible");
	target.setAttribute("class", "visible");
	target.setAttribute("className", "visible");
	return true;
}

