<!-- 

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

function ops(path, x, y) {
	if (typeof(path) == 'object') {
		re = /images\/views\/(\w+)t.jpg/;
		myArray = re.exec(path.innerHTML);
		url = '/images/views/' + RegExp.$1 + '.jpg';
	} else
		url = path;
	w_w = x; w_h = y;
	WindowName = uniqueId(url);
	s = 'status=no,scrollbars=no' + ',width=' + w_w + ',height=' + w_h;
	secWnd = window.open('', WindowName, s);
	with (secWnd) {
		document.write("<HTML>\n<head>\n<title>Ad Libitum</title>\n");
		//document.write('<link rel="stylesheet" href="/default.css" type="text/css">\n');
		document.write("</head>\n");
        document.write("<body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 bgcolor='White'>\n");
		//document.write(path.innerHTML);
        document.write("<DIV STYLE='left:0px;top:0px;margin:0px 0px 0px 0px;'>\n");
        document.write("<IMG SRC=\""+url+"\" WIDTH="+ w_w +" HEIGHT=" + w_h + " BORDER=0>\n");
        document.write("</DIV>\n");
        document.write("</BODY>\n</HTML>");
        document.close();
		focus();
	}
	return false;
}

// -->