function popcbox(tid, tkey) {
var baseurl = "https://www2.cbox.ws/box/?boxid=2374768&boxtag=1bzfla",
baseid = '2-2374768',
fontop = 0;
turl = '',
tid = tid || 0,
tkey = tkey || "",
html = [],
width = 200,
height = 380,
fheight = 160;
if (tid && tkey) {
turl = '&tid='+tid+'&tkey='+tkey;
}
var htmlform = '';
var htmlmain = '';
var prows = (fontop) ? (fheight+',*') : ('*,'+fheight);
html.push('
Cbox');
html.push(fontop ? htmlform : htmlmain);
html.push(fontop ? htmlmain : htmlform);
html.push('Frames required');
var cboxwin = window.open("","Cbox-"+baseid+"-"+tid,"width="+width+",height="+height+",toolbar=no,scrollbars=no,status=no,resizable=yes");
cboxwin.document.open();
cboxwin.document.write(html.join(''));
try {
x = screen.width;
y = screen.height;
cboxwin.moveTo(Math.max((x - width)/2, 0), Math.max((y - height)/2, 0));
cboxwin.focus();
} catch (e) {};
}