function OpenSmileys() {
	var newWindowFeatures="dependent=1,Height=150,Width=120,top=300,left=10"; 
	var board=window.open("/main/smileys.html","Smileys",newWindowFeatures); 
	board.focus();
}

function OpenAddWin(forum_id,topic_id,item_id,mode) {
	var string = "";
	if(mode=="new") file = "add_new"; else file = "add_reply";
	if(forum_id>0)  string += "&f="+forum_id;
	if(topic_id>0)  string += "&t="+topic_id;
	if(item_id>0)   string += "&i="+item_id;
	var newWindowFeatures="dependent=1,Height=400,Width=450,top=300,left=100"; 
	var board=window.open("/forum/"+file+".html?"+string,"Forum",newWindowFeatures); 
	board.focus();
	return false;
}


function quoteSelection() {

    var selection = null;
 	   if (window.getSelection) text = window.getSelection();
	   else if (window.document.getSelection) text = window.document.getSelection();
	   else if (document.getSelection) text = document.getSelection();
 	   else selection = document.selection;

    var context = null;
    if (selection) {
		var r = selection.createRange(); if (!r) return;
		text  = r.text;
		text  = text.substring();
		context = text;
    } else {
		context = text;
    }


	if(context.length<3) {
		alert("Выделите любой текст на странице и нажмите \"Цитировать\"");
	} else {
		var src = document.AddForm.text.value;
		document.AddForm.text.value = src+'[Цитата]\n'+context+'\n[/Цитата]\n';
	}

}