// www.gramy.com

<!-- //

function DoList( MyForm ) {

    var MyUrlText = new String("http://www.gramy.com/list3/index_eng.cgi?adr="); 

    if ( MyForm.adr.value == '' ) {
	alert('Please type your email address!');
    } else {
	MyUrlText += MyForm.adr.value;
        if ( MyForm.act.selectedIndex == 0 ) {
	    MyUrlText += "&act=sub";
	} else {
	    MyUrlText += "&act=unsub";
	}	
	open(MyUrlText, "GRAMY", "width=430,height=220,location=no,menubar=no,status=no,toolbar=no");
    }
    return false;
}

// -->
