
function email(id,type) {
        var winl = (screen.width / 2) - 125;
        var wint = screen.height / 6;
        var h = wint * 4;
        winprops = "height="+h+",width=250,top="+wint+",left="+winl+",scrollbars=0,resizable=0";
	fname = "email.php?id="+id+"&type="+type;
	emailWin = window.open(fname,'emailWin',winprops);
	emailWin.document.close();
	emailWin.focus();
}

function comment(id) {
        var winl = (screen.width / 2) - 125;
        var wint = screen.height / 6;
        var h = wint * 4;
        winprops = "height="+h+",width=250,top="+wint+",left="+winl+",scrollbars=0,resizable=0";
	fname = "comment.php?id="+id;
	emailWin = window.open(fname,'emailWin',winprops);
	emailWin.document.close();
	emailWin.focus();
}

function subemail() {
        var winl = (screen.width / 2) - 125;
        var wint = screen.height / 6;
        winprops = "height=150,width=250,top="+wint+",left="+winl+",scrollbars=0,resizable=0";
	emailWin = window.open('','subemailWin',winprops);
	emailWin.document.close();
	emailWin.focus();
}


