function showProductSuppFacts(id,productid)
{
	var url = '/product_suppfacts.asp?id=' + id + '&productid=' + productid;
	var win = window.open(url, '', 'menubar=no,scrollbars=yes');
	win.document.close();
	if (window.focus) { win.focus(); }
}

function printNews(id)
{
	var url = '/news_print.asp?id=' + id;
	var win = window.open(url, '', 'height=600,width=800,menubar=no,scrollbars=yes');
	win.document.close();
	if (window.focus) { win.focus(); }
}



function changeLinkA() {
	document.getElementById('mainImage').src = document.getElementById('articleImage01').value;
	document.getElementById('mainTitle').innerHTML = document.getElementById('articleTitle01').value;
	document.getElementById('mainArticle').innerHTML = document.getElementById('article01').value;
	document.getElementById('articleLink01').setAttribute("bgcolor", "#f4f4f4");
}

function changeLinkB() {
	document.getElementById('mainImage').src = document.getElementById('articleImage02').value;
	document.getElementById('mainTitle').innerHTML = document.getElementById('articleTitle02').value;
	document.getElementById('mainArticle').innerHTML = document.getElementById('article02').value;
	document.getElementById('articleLink02').setAttribute("bgcolor", "#f4f4f4");
}

function changeLinkC() {
	document.getElementById('mainImage').src = document.getElementById('articleImage03').value;
	document.getElementById('mainTitle').innerHTML = document.getElementById('articleTitle03').value;
	document.getElementById('mainArticle').innerHTML = document.getElementById('article03').value;
	document.getElementById('articleLink03').setAttribute("bgcolor", "#f4f4f4");
}

/* Replaced these three with the one function that follows.
function resetBG01() {
	document.getElementById('articleLink01').setAttribute("bgcolor", "#ffffff");
}

function resetBG02() {
	document.getElementById('articleLink02').setAttribute("bgcolor", "#ffffff");
}

function resetBG03() {
	document.getElementById('articleLink03').setAttribute("bgcolor", "#ffffff");
}
*/

/* DJ - Now that we have a colored background to this... I guess do not reset. Wait... this is working/breaking sporadically!!! */
function resetBG(littlebox) {
	littlebox.setAttribute("bgcolor", "#ffffff");
}

/* Feh. Safari-Mac and Chrome-XP turn the backgrounds "c00000" for some ridiculous reason. Let's go back and try just a white background.
function resetBG(littlebox, color) {
	littlebox.setAttribute("bgcolor", "color");
}
*/
/* Ah... great. "setAttribute" does NOT work with IE I guess. Ah, it "should" work in IE8... which is what I'm testing against! */
