<!-- 

function uniqueId(input) {
	re = /[A-Za-z0-9]/g;
	//str = window.location.href;
	myArray = input.match(re);
	output = "";
	for (i=0;i<myArray.length;i++) {
		output = output + myArray[i];
	}
	return output;
}

function ops(path, x, y) {
	WindowName = uniqueId(path);
	s = 'status=no,scrollbars=no' + ',width=' + x + ',height=' + y;
	secWnd = window.open('', WindowName, s);
	with (secWnd) {
		document.write("<HTML>\n<head>\n<title>SIBIR ENERGY plc</title>\n");
		document.write('<link rel="stylesheet" href="/style/common.css" type="text/css">\n');
		document.write("</head>\n");
        document.write("<body>\n");
        document.write("<DIV STYLE='left: 0; top:0; margin:0;'>\n");
        document.write("<IMG SRC=\""+path+"\" WIDTH="+ x +" HEIGHT=" + y + " BORDER=0>\n");
        document.write("</DIV>\n");
        document.write("</BODY>\n</HTML>");
        document.close();
		focus();
	}
}


// -->