function openRSSPage(){
	var QueryString = window.location.search.toString();
	if(RSSQueryText!=null && RSSQueryText.length>0){
		QueryString = QueryString.replace("?","&");
		QueryString  = "?QueryText=" + RSSQueryText + QueryString + "&SortField=" + SortField + "&SortOrder=" + SortOrder + "&ResultCount=" + ResultCount;
	}
	// window.open(RSSPageUrl + QueryString);
	window.open(RSSPageUrl);
}

	function openRSSHelpDialog(){
			dialog = 
			new YAHOO.widget.Panel("RSSFormContainer",  
											{ width:"500px", 
											  fixedcenter:true, 
											  close:false, 
											  draggable:true, 
											  modal:true,
											  visible:false,
											  effect:{effect:YAHOO.widget.ContainerEffect.FADE, duration:0.5} 
											} 
										);

		
		dialog.setHeader("What is RSS");

		var dialogBody = "<h3>What is RSS?</h3>";
		dialogBody +="<p>RSS (or Really Simple Syndication) feeds are free content updates from Web sites, including meadwestvaco.com,";
		dialogBody +=" that contain article headlines, summaries and links back to full-text articles on the web. Using an RSS reader, you can"; 
		dialogBody +=" view automatically updated data feeds from multiple news sources in the same place.<br/>";
		dialogBody +="<div style=\"border-bottom:1px solid #ccc;width:500px;\">&nbsp;</div></p>";
		dialogBody +="<h3>What tools do I need to use RSS?</h3>";
		dialogBody +="<p>To start using RSS, you need a special news reader or aggregator that displays RSS content";
		dialogBody +=" feeds from Web sites you select. Several of the newest internet browsers include RSS readers.";
		dialogBody +="  Additionally, there are many different free news readers available for download to install on your computer.";
		dialogBody +="  Several Web-based news readers are also available.</p>";
		dialogBody +="<p><a href=\"javascript: void window.open('http://dir.yahoo.com/Computers_and_Internet/Data_Formats/XML__eXtensible_Markup_Language_/RSS/RSS_Readers_and_Aggregators/');\">List of news readers</a> (Yahoo!)<br/>";
		dialogBody +="<a href=\"javascript: void window.open('http://directory.google.com/Top/Reference/Libraries/Library_and_Information_Science/Technical_Services/Cataloguing/Metadata/RDF/Applications/RSS/News_Readers/');\">List of news readers</a> (Google!)</p>";
		dialogBody +="<p>Once you have set up your news reader, you simply subscribe to the RSS content feeds you want to receive.<br/>";
		dialogBody +="<div style=\"border-bottom:1px solid #ccc;width:500px;\">&nbsp;</div></p>";
		dialogBody +="<h3>What are the benefits of using RSS?</h3>";
		dialogBody +="<p>RSS is an easy way to be alerted when content that interests you appears on your favorite Web sites.";
		dialogBody +="  Instead of visiting a particular Web site to browse for new articles and features, RSS automatically tells you when"; 
		dialogBody +=" something new is posted online. If you visit a lot of websites on a daily basis, or read a lot of weblogs (or";
		dialogBody +=" &quot;blogs&quot;), a news reader can save you a lot of time.</p>";
		dialogBody +="<p>Using a news reader to consume your web media means that you only need to visit a website when you read a story";
		dialogBody +=" in your news reader that is of interest to you. You won't have to visit many sites multiple times every day to see if"; 
		dialogBody +=" there are updates; your news reader will do that for you and will let you know when there is a new story to be read!<br/>";
		dialogBody +="<div style=\"border-bottom:1px solid #ccc;width:500px;\">&nbsp;</div></p>";
		dialogBody +="<h3>How can I subscribe to RSS feeds from MeadWestvaco.com?</h3>";
		dialogBody +="<p>To sign up for RSS feeds from MeadWestvaco.com, simply click on the RSS button on the current page and"; 
		dialogBody +=" follow the instructions for your particular news reader to subscribe to RSS feeds.</p>";
		var footer = "<a href=\"Javascript:;\" onclick=\"Javascript:closeMe();\" style=\"float:right;margin:5px;\">Close</a>";

		dialog.setBody(dialogBody);		
		dialog.setFooter(footer);
		dialog.render(document.body);
		dialog.show();
		dialog.cfg.setProperty("fixedcenter",false);
		dialog.cfg.setProperty("y","25");
	}

	function closeMe(){
		if(dialog!=null){
			dialog.hide();
			dialog = null;
		}
	}

