shown=''
function OpenFile(url,width,height) {

var Left = (screen.width - width) / 2 - 5;
var Top = (screen.height - height) / 2 - 29;

if( shown=='' || shown.closed) {

window.focus();
shown=window.open(url,"OpenFile","top="+Top+",left="+Left+",width="+width+",height="+height+",scrollbars=no,status=no, resizable=0, high");

}
else{
shown.close();
shown=window.open(url,"OpenFile","top="+Top+",left="+Left+",width="+width+",height="+height+",scrollbars=no,status=no,resizable=0, high");
}
}

function openwin(){
	var parentwin = external.menuArguments;
        parentwin.focus();
        parentwin.document.focus();
    L = parentwin.open('http://www.rsdn.ru',"LL");
    L.focus();
    L.document.focus();

}

