function opennew(img,x,y) {
	// path, width and height as arguments
	var winx=x+30;
	var winy=y+30;
	var msgWindow = window.open('','','Width=' + winx + ',Height=' + winy + 'resizable=no');
	var page='<html><head><title>Click on pic to close</title></head><a href="javascript:self.close()"><img alt="" border=0 src="' + img + '" height=' + y + ' width=' + x + '></a></html>';
	msgWindow.document.open();        
	msgWindow.document.write(page);
	msgWindow.document.close();
}   

