function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function ipr_notice (photo_obj, id) {
	offset = Position.cumulativeOffset(photo_obj);
	dim = Element.getDimensions(photo_obj);

	right = offset[0] + dim.width;
	bottom = offset[1] + dim.height;

	over = document.createElement('div');
	over.style.position = 'absolute';
	over.style.display = 'block';
	over.style.left = (right - 20) + 'px';
	over.style.top = (bottom - 15) + 'px';
	over.style.zIndex = '10000000';

	over.innerHTML = '<a style="-moz-opacity: 0.6; font-size: 8pt;" href="http://www.silkmark.gr/public/img_data.php?img_id=e93028bdc1aacdfb3687181f2031765d_' + id + '" target="_blank">IPR</a>';

	document.body.appendChild(over);
}