// Extraido de naguissa toolkit, ngstk. www.naguissa.com
function ngstk_createObject(tipo,attr,cod) {
var z = document.createElement(tipo.toUpperCase());
for( var a in attr ) {
z.setAttribute(a, attr[a]);
}
if( typeof cod == 'string' ) z.innerHTML = cod;
if( typeof cod == 'object' && cod ) z.appendChild( cod );
return z;
}
var url = "http://tagboards.dwebresources.com/es/tagboards.php?t=";
var i = encodeURIComponent("");
if( i != "" ) url += "&color=" + i
var i = encodeURIComponent("7");
if( i != "" ) url += "&sala=" + i
var i = encodeURIComponent("");
if( i != "" ) url += "&tcolor=" + i
var i = encodeURIComponent("es");
if( i != "" ) url += "&lang=" + i
var i = encodeURIComponent("");
if( i != "" ) url += "&gmt=" + i
var i = encodeURIComponent("");
if( i != "" ) url += "&bg=" + i
var i = encodeURIComponent("");
if( i != "" ) url += "&bga=" + i
var i = encodeURIComponent("");
if( i != "" ) url += "&bgb=" + i
var i = encodeURIComponent("
AquĆ tu comentario
");
if( i != "" ) url += "&msg=" + i
url += "&parent=" + encodeURIComponent( window.location.href );
var i = "100%";
var w = ( ( i == "" ) ? "200px": i.replace(/_pct_/g, '%'));
var i = "300px";
var h = ( ( i == "" ) ? "250px": i.replace(/_pct_/g, '%'));
var i = "0";
var b = ( ( i == "" ) ? "": "border:"+i+";");
var c = "";
var pos = "static";
if( pos == "TL" || pos == "TR" || pos == "BL" || pos == "BR" ) {
var o = ngstk_createObject("DIV", {"id":"ngstkTagBoard"}, c );
if( pos == "TL" ) {
o.style.position = "fixed";
var i = "";
o.style.top = ( (i=="") ? "0":i );
var i = "";
o.style.left = ( (i=="") ? "0":i );
}
if( pos == "TR" ) {
o.style.position = "fixed";
var i = "";
o.style.top = ( (i=="") ? "0":i );
var i = "";
o.style.right = ( (i=="") ? "0":i );
}
if( pos == "BL" ) {
o.style.position = "fixed";
var i = "";
o.style.bottom = ( (i=="") ? "0":i );
var i = "";
o.style.left = ( (i=="") ? "0":i );
}
if( pos == "BR" ) {
o.style.position = "fixed";
var i = "";
o.style.bottom = ( (i=="") ? "0":i );
var i = "";
o.style.right = ( (i=="") ? "0":i );
}
document.body.appendChild(o);
}
else if( pos == "static" ) {
document.write(c);
}