<!--
var mie = window.createPopup;
if (mie) {
	document.oncontextmenu = init;
}
var rm = '';
var preitem = '';

function init() {
	mx = event.clientX;
	my = event.clientY;
	menx = window.screenLeft + mx;
	meny = window.screenTop + my;
	sysmen = window.createPopup();
	sysmen.document.write(rm);
	sysmen.show(menx, meny, rm_width, document.getElementById('men').offsetHeight);
	return false;
}
function rm_init() {
	if (mie) {
		rm += ('<style type="text/css">.texd {position:absolute;top:0px;color:' + rm_titletext + ';writing-mode:tb-rl;padding-top:10px;filter: flipH() flipV() dropShadow( Color=000000, offX=-2, offY=-2, positive=true);z-Index:10;width:100%;height:100%;font:bold 12px arial, sans-serif}.grad{position:relative;top:0px;left:0px;width:100%;background-color:' + rm_titlecol2 + ';height:100%;z-Index:9;filter:alpha( style=1, opacity=0, finishOpacity=100, startX=100, finishX=100, startY=0, finishY=100)}.ctr{background-color:' + rm_titlecol1 + ';border:1px inset ' + rm_bg + ';height:98%;width:18px;z-Index:8;top:0px;left:0px;margin:2px;position:absolute}.men{position:absolute;top:0px;left:0px;padding-left:18px;background-color:' + rm_bg + ';border:2px outset ' + rm_bg + ';z-Index:1}.men a{margin:1px;cursor:hand;padding-bottom:4px;padding-left:1px;padding-right:1px;padding-top:3px;text-decoration:none;height:100%;width:100%;color:' + rm_cl + ';font:bold 12px arial, sans-serif}.men a:hover{background:' + rm_bgov + ';color:' + rm_clov + '}body{overflow:hidden;border:0px;padding:0px;margin:0px}.ico{border:none;float:left}<\/style><div class="men">');
	}
}
function rm_item(txt, ico, lnk) {
	if (mie) {
		if (!ico) {
			ico = 'http://3dup.com/images/news/icons/spac.gif';
		}
		preitem += ('<a href="#" onMouseDown="parent.window.location.href=\'' + lnk + '\'">');
		preitem += ('<img src="' + ico + '" width="16" height="16" class="ico">&nbsp;&nbsp;' + txt + '<\/a>');
	}
}
function rm_close() {
	if (mie) {
		rm += preitem;
		rm += ('<\/div><div class="ctr"><div class="grad"><\/div><div class="texd" id="ti">' + rm_title + '<\/div><\/div>');
		document.write('<div id="men" style="width:' + rm_width + '"><\/div>');
		document.getElementById('men').innerHTML = preitem;
	}
}
//-->

