function checksubscribe()
{

with (document.Csubscribe)
{

	if (joinChapter[joinChapter.selectedIndex].value == 0) 
	{
		self.alert("Please select a chapter to subsribe to");
	}
	else
	{
		submit();
	}
	
}

}


function launchwindow(frameURL, winName) { 
        features = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=610,height=245' ;

        var remote = window.open(frameURL, winName, features);
        if (remote.opener == null)
            remote.opener = window;
        remote.opener.name = 'decus';
    	remote.focus();
}