function OpenComments (c) {
    window.open(c,
                    'comments',
                    'width=480,height=480,scrollbars=yes,status=yes');
}

function OpenTrackback (c) {
    window.open(c,
                    'trackback',
                    'width=480,height=480,scrollbars=yes,status=yes');
}

function OpenInfo (c) {
    window.open(c,
                    'Info',
                    'width=250,height=160,scrollbars=yes,status=yes');
}

function OpenInfoComman (c) {
    window.open(c,'InfoComman','width=350,height=300,scrollbars=yes,status=yes');
}
function counter(count) {
	field = document.getElementById("txtTozih");
	txt_field = document.getElementById("countBody");
	txt_field.innerHTML = count-field.value.length;
	if(field.value.length >= count)
		field.value = field.value.substring(0, count);
}



