// FEEDBACK - pop open the article feedback form
function openFeedback(articleID) {
	feedbackPath = "/includes/forms/feedback.php?aid=" + articleID;
	window.open(feedbackPath,'Feedback','left=160,top=200,height=380,width=375,resizable=no,status=no,menubar=no,toolbar=0')
}

// EMAILARTICLE - pop open the article feedback form
function openEmailArticle(articleID,region,application,os,connection)
{
	emailPath = "/includes/forms/emailarticle.php?item=" + articleID + "&region=" + region + "&app=" + application + "&os=" + os + "&connection=" + connection;
	window.open(emailPath,'Email','left=160,top=200,height=540,width=475,resizable=no,status=no,menubar=no,toolbar=0');
    return false;
}

// GLOSSARY - code to pop glossary window
function openGlossary(id) {
	glossaryPath = "/glossary.php?id=" + id;
	window.open(glossaryPath,'Glossary','left=160,top=200,height=440,width=450,resizable=no,status=no,menubar=no,scrollbars,toolbar=0')
    return false;
}

function showToolTip(element) {
	document.all(element).style.visibility="visible";
}
function hideToolTip(element) {
	document.all(element).style.visibility="hidden";
}

// EZPRINT
function openEZPrint(articleID,region,application,os,connection)
{
	articlePath = "/ezprint.php?item=" + articleID + "&region=" + region + "&app=" + application + "&os=" + os + "&connection=" + connection;
	window.open(articlePath ,'EZPrint', 'height=500,width=528,top=200,left=200,scrollbars,menubar=yes');
    return false;
}

