
/* Element ---------------------------*/
function element(id){
return document.getElementById(id);
}

/* Style Settings --------------------*/
function set_style(id, style){
set_style_obj(element(id), style);
}
function set_style_obj(o, style){
o.className = style;
}

/* Image Swapper ---------------------*/
function swap_lowsrc(id){ //Image Swop SRC With LowSRC
swap_lowsrc_img(element(id));
}
function swap_lowsrc_img(img){ //Image Swop SRC With LowSRC
var src = img.src;
img.src = img.lowsrc;
img.lowsrc = src;
}


/* HTML XChange */
function secure_setHTML(id, html_code){
if(element(id) != null)
element(id).innerHTML = html_code;
}

function do_dots(text, type) {

var length = {};
length['thumb'] = 22;

if(text.length > length[type])
return text.substring(0, length[type] - 3) + '...';

return text;
}
