<!-- 

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 = /([\/\w]+)_small.jpg/;
		myArray = re.exec(path.innerHTML);
		url = RegExp.$1 + '.jpg';
	} else
		url = path;
	w_w = x; w_h = y;
	//alert(url);
	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>Iceland Culture</title>\n');
		document.write('</head>\n');
        document.write('<body style="padding: 0; margin: 0; background: #ffffff;">\n');
        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();
	}
	/*if (window.focus) alert('focus!');
	secWnd.focus();*/
}

// -->
