function $(id){return document.getElementById(id);}

function makeBadge(){
	$('btn_gen').disabled=true;
	$('img_preview').style.display='none';
	$('preloading').style.display='';
	url = $('t_url').value;
	part = url.split('/');
	nomfitxer = part[part.length-1];
	bg = $('t_bg').value;
	fc = $('t_fc').value;
	url_img = 'http://www.viciao2k3.net/services/tagfile/widget.php?url='+url+'&bg='+bg+'&fc='+fc+'&lang='+lang;
	$('img_preview').src=url_img+'&gen&hash=' + Math.random();
	$('lnk_preview').href='http://www.viciao2k3.net/services/tagfile/link.php?url='+url;
	$('c_html').value = '<a href="'+$('lnk_preview').href+'" target="_blank"><img src="'+url_img+'" alt="'+nomfitxer+'" /></a>';
	$('c_bb').value = '[url='+$('lnk_preview').href+'][img='+url_img+'][/url]';
}

function d2h(d) {
	v=d.toString(16);
	if(v==0)v='00';
	return v;
}

function chgColor(obj){
	tobj = document.forms[0].getElementsByTagName('div');
	for(i=0;i<tobj.length;i++)tobj[i].style.borderColor='white';
	obj.style.borderColor='red';
	color = obj.style.backgroundColor.toString();
	color = color.replace(/rgb\(|\)| /gi,'');
	tcolor=color.split(',');
	color = d2h(parseInt(tcolor[0])) +   d2h(parseInt(tcolor[1])) + d2h(parseInt(tcolor[2]))  ;
	$('t_bg').value = color.toUpperCase();
	makeBadge();
}

function info(quin){
	tobj = $('div_plugin').getElementsByTagName('div');
	for(i=0;i<tobj.length;i++)tobj[i].style.display='none';
	$('info'+quin).style.display='';
}

function onComplete(){
	$('img_preview').style.display='';$('preloading').style.display='none';$('btn_gen').disabled=false;
}