/* Main javascript file for ScoopAway.com */

function subwindow(url, width, height) {
    var scrollbar=1;
    var resizable=1;
    popup = window.open(url, "subwin", "scrollbars="+scrollbar+",resizable="+resizable+",status=0,location=0,width="+width+",height="+height);
    popup.focus();
}

function popup_printArticle(articleID, pnav, snav)
{
	subwindow("/cat_health/articles/printer_friendly.php?article_id="+articleID+"&primary_nav="+pnav+"&secondary_nav="+snav, 497, 580);
}

function removePopup() {
	document.getElementById("exitfreshstep").style.display = 'none';
}

function exitFreshStep() {
	document.getElementById("exitfreshstep").style.display = 'block';
}