function OpenForm(page, link) {
	var url = "http://rudiplom.ru/modules/sendurl/sendurl.php?mf_link=" + page
		window.open(url,"","scrollbars=no,menubar=no,personalbar=no,width=600,height=420,screenX=0,screenY=0");
}

function OpenRankForm(url) {
		window.open(url,"","scrollbars=no,menubar=no,personalbar=no,width=400,height=150,screenX=0,screenY=0");
}

function resize_textarea(to, forma) {
    if(to == -1)
        to = -1;
    else
        to = 1;

    var the_form = forma;
    if((the_form.rows = the_form.rows + to) <= 4)
        the_form.rows = 4;
    else
        the_form.rows = the_form.rows + to;
}