var SKIP_LINK_HREF = document.location.href + "#content";
    
function createSkipLink()
{
	var skipAnchor = document.getElementById('skip-anchor');
	skipAnchor.href = SKIP_LINK_HREF;
}
/*
	String Trim function
*/
String.prototype.trim = function() {
	return this.replace(/^\s+|\s+$/g,"");
}

/*
	Popup Window for User Help
*/
function popUpHelp(URL) {
	var day = new Date();
	var id = "window" + day.getTime();
	var win = window.open(URL, id, 'toolbar=no,scrollbars=yes,location=no,statusbar=no,menubar=no,resizable=yes,width=820,height=500,left=100,top=50');
}
/*
	All browse collection pages have a sidebar containing links
	to related resources. This function prints a common title 
	for those areas.
*/
function printSideResourcesTitle() {
	var title = "Related Resources";
	document.write(title);
}