function glossary(id) {
	var settings = "width=300,height=320,resizable=yes,scrollbars=1";
	
	window.open("#application.url_root#/Help/glossary_popup.cfm##" + id ,"_glossary",settings);
}

function intro() {
	var settings = "width=600,height=500,resizable=no,scrollbars=0";
	
	window.open("#application.url_root#/intro.html##","_intro",settings);
}

function goTutorial() {
	var settings = "width=600,height=500,resizable=yes";
	window.open("#application.url_root#/Help/tutorial_mylists.cfm","_editor", settings);
}
function goRequest() {
	var settings = "width=500,height=550,resizable=yes";
	window.open("#application.url_root#/Help/research.cfm","_request", settings);
}

//-----SCR:44538

function changeDesciptionVal(Obj){
	var title='Free Trial';
	var message="";
	if(Obj.name=='type')
	{
		title=getNodeTitle(Obj.value);
		message=document.feedback.content.value;
		finalDescription(title,message);	
	}
	
	if(Obj.name=='content'){
		title="";
		radioButtonCollection=document.feedback.type;
		for(i=0; i<=radioButtonCollection.length-1; i++)
		{
			if(radioButtonCollection[i].checked==true)
			{
				title=getNodeTitle(radioButtonCollection[i].value);
			}
		}
		message=Obj.value;
		finalDescription(title,message);	
	}

}

function finalDescription(title,message){
var sitename="Filmtracker.com";
document.feedback.description.innerHTML="Filmtracker.com - "+ title +" - "+message;
}

function getNodeTitle(str)
{
	
		switch(str)
		{
			case "free Trail":
				title="Free Trial";
			break;
			case "infosource":
				title="Sales";
			break;
			case "Renew Subscription":
				title="Renew My Subscription";
			break;			
			case "busdev":
				title="Licensing / Syndication";
			break;
			case "coverage":
				title="Jobs";
			break;
			case "tracking":
				title="Business Development Inquiry";
			break;
			case "cancel Subscription":
				title="Cancel My Subscription";
			break;
			case "endfree trial":
				title="End Free Trial";
			break;	
			case "advertising":
				title="Customer Service Inquiries";
			break;	
			default : title="NA";
		}

	return title;
}
//-----/SCR:44538