getById=function(id) { return document.getElementById(id); } getByTag=function(tag) { var tag=arguments[0]; var oList=new Array(); if(arguments.length>1) var rootObj=arguments[1]; else rootObj=document; return rootObj.getElementsByTagName(tag); } getByClass=function() { var c_name=arguments[0]; var oList=new Array(); if(arguments.length>1) var rootObj=arguments[1]; else rootObj=document; for(var i=0;i0) oList=oList.concat(getByClass(c_name,rootObj.childNodes[i],'dd')); } return oList; } setAttributes=function(obj,attrs) { for(var i=0;i0) return true; else return false; } function confirmDel(a) { if(confirm('Silmek istediğinize emin misiniz?')) { location.href=a.href+'&confirm=yes'; return false; } else return false; }