///////////////////////////////////////////////////////////////
function ShowImage(obj)
{
	var url 	= new String(obj.href);
	var base 	= new String("http://rifco.com.ua");
	if(url.substr(0,base.length)==base.toString()) {url = url.substr(base.length);}
	base 		= new String("http://www.rifco.com.ua");
	if(url.substr(0,base.length)==base.toString()) {url = url.substr(base.length);}
	newWindow = window.open("/mini"+url,obj.target,"status,height=200,width=200");
	newWindow.focus();
	return false;
}
///////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////