function delete_confirm(del_url,sms)
{
	if (window.confirm(sms))
	{
		document.location = del_url;
	} 
	return false;
} // end function news_delete_confirm()


function img_window(img_name,img_tytle,img_size)
{
	imgw=window.open(img_name,"", "left=10, top=10, resizable=yes, toolbar=no, scrollbars=no, "+img_size);
	imgw.focus();
}

function ans_window(img_name,img_tytle,img_size)
{
	imgw=window.open(img_name,"", "left=10, top=10, resizable=yes, toolbar=no, scrollbars=yes, "+img_size);
	imgw.focus();
}

function Cursor(id, color) 
{
	var tr_id;
	tr_id = "tr_" + id;
	// window.alert("tr_id="+tr_id);
	document.all[tr_id].style.background = color;
	// window.event.srcElement.style.cursor = 'hand';
}

function submit_click1 (checked_form)
{  
    obj = document.getElementById(checked_form)
    reason=true
    for(i=0;i<obj.length;i++){
        if (obj[i].value == ''){alert('Все поля обязательны для заполнения!');reason=false}
    }
    if(reason) obj.submit() 
}

