// JavaScript Document
    if(location.protocol.toLowerCase() =='http:' && 
        location.href.toLowerCase().indexOf('secure') > -1 )  
	{
	if (document.URL.match(/^http:\/\/www.westcoastsongwriters.org\//)) { 
		location.href = location.href.replace('http:','https:');
		}
	if (document.URL.match(/^http:\/\/westcoastsongwriters.org\//)) { 
		location.href = location.href.replace('http://','https://www.');
		}
	}

    if(location.protocol.toLowerCase() =='https:' && 
         location.href.toLowerCase().indexOf('secure') == -1 )
             location.href = location.href.replace('https:','http:');
