<!--
if (top == self) self.location.href = "../index.html";
function openwindowlink(url, w, h,medianame)
{
var top=0;
var left=0;
var realheight; realheight=h;
var lineheightInPixel=0;
var exist=0;

top=Math.floor((screen.height-realheight)/2);
left=Math.floor((screen.width-w)/2); 
popup = window.open("", medianame,"top="+top+",left="+left+",width="+w+",height="+realheight+",toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0,copyhistory=0, menuBar=0");
popup_html = '<BODY oncontextmenu="return false" onselectstart="return false" ondragstart="return false"';
popup_html += '<html>';
popup_html += '<head>';
popup_html += '<title>CPU-Welt</title>';
popup_html += '<META HTTP-EQUIV="imagetoolbar" CONTENT="no">';
popup_html += '<style type="text/css">';
popup_html += '<!-- ';
popup_html += 'body  { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; color: #386f29; } ';
popup_html += '-->';
popup_html += '</style>';
popup_html += '</head>';
popup_html += '<body bgcolor="#ffffff" background="background.gif" text="#000000" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" rightmargin="0">';
    {
    popup_html += '<a href="javascript:self.close();">';
    popup_html += '<img src="'+url+'" width="'+w+'" height="'+h+'" border="0">';
    popup_html += '</a>';
    }
popup_html += '<div align="center"><small>';
popup_html += '</small></div>';
popup_html += '</body>';
popup_html += '</html>';
popup.document.open();
popup.document.write(popup_html);
popup.document.close();
}
//-->