// JavaScript Document

function showTerms(){
	window.open("/terms.aspx","terms","scrollbars=yes,width=500,height=400");
}

function createWebPageName(strString){
	var tmp
	tmp = strString;
	tmp = replaceAll(tmp, " ", "_");
	tmp = replaceAll(tmp, "/", "-");
	tmp = replaceAll(tmp, "&", "and");
	tmp = replaceAll(tmp, "+", "plus");
	tmp = replaceAll(tmp, ".", "-");
	tmp = replaceAll(tmp, ",", "-");
	return tmp;
}

function replaceAll(strString, strFind, strReplace){
	while(strString.indexOf(strFind) != -1){
		strString = strString.replace(strFind, strReplace);
	}
	return strString;
}