// JavaScript Document
// break out of frames script
	var keywords = [];
	var found =0;
function noFramesAllowed(){
	keywords[0]= 'images.google.';
	//myArray[1]= 'domain2';
	//myArray[2]= 'domain3';
	//myArray[3]= 'domain4';
	//myArray[4]= 'domain5';
	for(var i=0;i<keywords.length;i++) {
		if (document.referrer.indexOf(keywords[i]) > -1)	{
			if ((self != top) || (top.location != self.location) || (parent.frames.length > 0)) {
				found=1;
				if (document.images)
	//				top.location.replace(document.location.href + '#articles_table');
					top.location.replace(document.location.href);				
				else
	//				top.location.href = document.location.href + '#articles_table';	
					top.location.href = document.location.href;					
			}
		}
	}
	if (found != 1) {
		if ((self != top) || (top.location != self.location) || (parent.frames.length > 0)) {
			if (document.images)
				top.location.replace(document.location.href);
			else
				top.location.href = document.location.href;
		}
	}
}
 noFramesAllowed();

// display image - do not remember where I use it - xxlimage maybe?
var newwindow = '';
function displayimage(url,nume,param,latime,inaltime) {
if (newwindow.location && !newwindow.closed) {
	newwindow.close();
	newwindow=window.open(url,nume,param);
	newwindow.moveTo(0,0); 	}
else {
    newwindow=window.open(url,nume,param);
	newwindow.moveTo(0,0); }
}

function closewindow() {
if (newwindow.location && !newwindow.closed) {
   newwindow.close(); }
}