//pop-up window

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// Populate SEO fields
function seoPopulate(title,content) {
var cleaned = title.replace(/[^a-zA-Z 0-9/-]+/g,''); // get rid of non-alphanumeric, spaces and dashes
longID = cleaned.replace('- ',''); // get rid of long dashes
longID = longID.replace(/[ ]+/g,'-'); // replace spaces with dashes
if (document.getElementById('longID').value == "" && longID != "Enter_title_here") document.getElementById('longID').value = longID;
if (document.getElementById('metadescription').value == "" && content != "Enter title here" && content != "Enter your content here") document.getElementById('metadescription').value = content.replace(/[^a-zA-Z 0-9/-]+/g,'');
if (document.getElementById('metakeywords').value == "" && cleaned != "Enter title here") document.getElementById('metakeywords').value = cleaned;
} // end function

//Bookmark code
function addBookmark(title, url) {
	url = url.replace(/\?SearchTerm=(\d)*/,"")
	url = 'http://' + window.location.host + url
	if (window.sidebar) { // firefox
					window.sidebar.addPanel(title, url,"");
				} else if( document.all ) { //MSIE
	                window.external.AddFavorite(url,title);
				} else {
					alert("Your browser doesn't support automatic bookmarking.\n\nIn Firefox or Safari use the Bookmarks menu.");
				}
}

//print page
function printPage(){
	window.print();
}
document.write("<style>.bodyStd #container li.printpage, .bodyStd #container li.emailafriend { display:inline; }</style>"); // show javascript reliant content - these should be hidden by previous CSS

	

