function openwinx(url,name,w,h)
{
    window.open(url,name,"top=100,left=400,width=" + w + ",height=" + h + ",toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,status=no");
}

function isnumber(val)
{
    var reg = /[\d|\.|,]+/;
    return reg.test(val);
}

function deleteThumb() {
	document.forms["tableform"].action=ROOT_PATH+"/admin/thumbdelete";
	document.forms["tableform"].submit();
}
function addContent() {
	document.forms["tableform"].action=ROOT_PATH+"/admin/add-content";
	document.forms["tableform"].submit();
}

